/**
 * Smash Theme - Main Stylesheet
 * Powered by smashnbuy.com
 * A modern, performance-focused theme for OpenCart 4
 */

/* ==========================================================================
   CSS Variables (Design Tokens)
   ========================================================================== */
:root {
  /* Primary Colors - EzeTree inspired dark theme */
  --smash-primary: #4299e1;
  --smash-primary-light: #63b3ed;
  --smash-primary-dark: #2c5282;
  --smash-secondary: #c9a55c;
  --smash-secondary-light: #d4b06a;
  --smash-secondary-dark: #b8944d;
  --smash-accent: #c9a55c;
  --smash-success: #48bb78;
  --smash-warning: #ecc94b;
  --smash-danger: #fc8181;
  --smash-info: #4299e1;

  /* Neutral Colors - Dark theme palette */
  --smash-dark: #1a202c;
  --smash-gray-900: #1a202c;
  --smash-gray-800: #2d3748;
  --smash-gray-700: #4a5568;
  --smash-gray-600: #718096;
  --smash-gray-500: #a0aec0;
  --smash-gray-400: #cbd5e0;
  --smash-gray-300: #e2e8f0;
  --smash-gray-200: #edf2f7;
  --smash-gray-100: #f7fafc;
  --smash-light: #f7fafc;
  --smash-white: #ffffff;

  /* Typography */
  --smash-font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --smash-heading-font: 'Inter', system-ui, -apple-system, sans-serif;
  --smash-font-size: 16px;
  --smash-line-height: 1.6;

  /* Font Weights */
  --smash-font-regular: 400;
  --smash-font-medium: 500;
  --smash-font-semibold: 600;
  --smash-font-bold: 700;
  --smash-font-extrabold: 800;

  /* Spacing */
  --smash-space-xs: 0.25rem;
  --smash-space-sm: 0.5rem;
  --smash-space-md: 1rem;
  --smash-space-lg: 1.5rem;
  --smash-space-xl: 2rem;
  --smash-space-2xl: 3rem;
  --smash-space-3xl: 4rem;

  /* Border Radius */
  --smash-radius-sm: 4px;
  --smash-radius-md: 8px;
  --smash-radius-lg: 12px;
  --smash-radius-xl: 16px;
  --smash-radius-full: 9999px;
  --smash-btn-radius: 8px;

  /* Shadows */
  --smash-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --smash-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --smash-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --smash-shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --smash-transition-fast: 150ms ease;
  --smash-transition-normal: 250ms ease;
  --smash-transition-slow: 350ms ease;

  /* Z-Index Scale */
  --smash-z-dropdown: 1000;
  --smash-z-sticky: 1020;
  --smash-z-fixed: 1030;
  --smash-z-modal: 1050;
  --smash-z-tooltip: 1070;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
.smash-theme {
  font-family: var(--smash-font-family);
  font-size: var(--smash-font-size);
  line-height: var(--smash-line-height);
  color: var(--smash-light);
  background-color: var(--smash-gray-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.smash-body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#smash-wrapper,
.smash-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.smash-main {
  flex: 1;
  padding-top: var(--smash-space-lg);
  padding-bottom: var(--smash-space-2xl);
  background-color: var(--smash-gray-900);
}

/* ==========================================================================
   Combined Top Bar (Announcement + Navigation)
   ========================================================================== */
.smash-combined-top-bar,
#top.smash-combined-top-bar,
.smash-theme .smash-combined-top-bar,
.smash-theme #top.smash-combined-top-bar {
  background: #c9a55c !important;
  background-color: #c9a55c !important;
  border-bottom: 1px solid var(--smash-secondary-dark);
  padding: 2px 0 !important;
  font-size: 11px;
  line-height: 1;
  color: var(--smash-dark);
}

/* Compact top bar elements */
.smash-combined-top-bar .list-inline-item {
  line-height: 1;
  margin-right: 0.5rem;
}

.smash-combined-top-bar .btn,
.smash-combined-top-bar .dropdown-toggle {
  padding: 2px 6px !important;
  font-size: 11px !important;
  line-height: 1 !important;
}

.smash-combined-top-bar select,
.smash-combined-top-bar .goog-te-combo {
  padding: 1px 2px !important;
  font-size: 11px !important;
  height: auto !important;
}

.smash-combined-top-bar .row {
  margin: 0;
  align-items: center;
}

/* Fallback styling for Google Translate element while loading */
#google_translate_element:empty::before {
  content: '\f0ac';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--smash-dark);
  font-size: 0.875rem;
}

#google_translate_element:empty::after {
  content: ' Language';
  color: var(--smash-dark);
  font-size: 0.8125rem;
}

.smash-combined-top-bar .smash-top-links {
  color: var(--smash-dark);
}

.smash-combined-top-bar .smash-top-link {
  color: var(--smash-dark);
}

.smash-combined-top-bar .smash-top-link:hover {
  color: var(--smash-gray-800);
}

.smash-combined-top-bar .smash-announcement-text {
  color: var(--smash-dark);
  font-size: 11px;
  font-weight: var(--smash-font-semibold);
  line-height: 1;
}

.smash-combined-top-bar .smash-announcement-text strong {
  color: var(--smash-white);
  background-color: var(--smash-dark);
  padding: 1px 4px;
  border-radius: 2px;
  margin-left: 4px;
  font-size: 10px;
}

.smash-combined-top-bar .smash-announcement-text::before {
  content: '\f0f3';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 4px;
  font-size: 10px;
  animation: smash-ring 1.5s ease-in-out infinite;
}

/* Currency/Language dropdowns in gold bar */
.smash-combined-top-bar .btn-link,
.smash-combined-top-bar .dropdown-toggle {
  color: var(--smash-dark) !important;
}

.smash-combined-top-bar .btn-link:hover,
.smash-combined-top-bar .dropdown-toggle:hover {
  color: var(--smash-gray-800) !important;
}

@keyframes smash-ring {
  0%, 100% { transform: rotate(0); }
  20%, 60% { transform: rotate(15deg); }
  40%, 80% { transform: rotate(-15deg); }
}

/* Legacy Top Bar (fallback) */
.smash-top-bar {
  background-color: var(--smash-gray-900);
  border-bottom: 1px solid var(--smash-gray-800);
  padding: var(--smash-space-sm) 0;
  font-size: 0.8125rem;
  color: var(--smash-gray-400);
}

.smash-top-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--smash-space-md);
}

.smash-top-link {
  color: var(--smash-gray-400);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--smash-space-xs);
  transition: color var(--smash-transition-fast);
}

.smash-top-link:hover {
  color: var(--smash-secondary);
}

.smash-dropdown {
  border: none;
  box-shadow: var(--smash-shadow-lg);
  border-radius: var(--smash-radius-md);
  padding: var(--smash-space-sm) 0;
  min-width: 200px;
}

.smash-dropdown .dropdown-item {
  padding: var(--smash-space-sm) var(--smash-space-md);
  transition: all var(--smash-transition-fast);
}

.smash-dropdown .dropdown-item:hover {
  background-color: var(--smash-gray-100);
  color: var(--smash-primary);
}

/* ==========================================================================
   Header
   ========================================================================== */
.smash-header {
  background-color: var(--smash-gray-800);
  padding: var(--smash-space-md) 0;
  border-bottom: 1px solid var(--smash-gray-700);
  transition: all var(--smash-transition-normal);
}

.smash-header-sticky {
  position: sticky;
  top: 0;
  z-index: var(--smash-z-sticky);
}

.smash-header-sticky.scrolled {
  box-shadow: var(--smash-shadow-md);
}

/* Logo */
.smash-logo {
  display: flex;
  align-items: center;
}

.smash-logo-img {
  max-height: 50px;
  width: auto;
  transition: transform var(--smash-transition-fast);
}

.smash-logo:hover .smash-logo-img {
  transform: scale(1.02);
}

.smash-logo-text {
  text-decoration: none;
}

.smash-brand-name {
  font-family: var(--smash-heading-font);
  font-size: 1.75rem;
  font-weight: var(--smash-font-extrabold);
  color: var(--smash-primary);
  letter-spacing: -0.5px;
}

/* Search */
.smash-search-wrapper {
  width: 100%;
}

.smash-search-wrapper #search {
  position: relative;
}

.smash-search-wrapper #search input.form-control {
  border-radius: var(--smash-radius-full);
  padding: 0.75rem 1.25rem;
  padding-right: 3rem;
  border: 2px solid var(--smash-gray-200);
  background-color: var(--smash-gray-100);
  transition: all var(--smash-transition-fast);
  font-size: 0.9375rem;
}

.smash-search-wrapper #search input.form-control:focus {
  border-color: var(--smash-primary);
  background-color: var(--smash-white);
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.1);
  outline: none;
}

.smash-search-wrapper #search .btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: var(--smash-radius-full);
  background-color: var(--smash-primary);
  color: var(--smash-white);
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--smash-transition-fast);
}

.smash-search-wrapper #search .btn:hover {
  background-color: var(--smash-primary-dark);
}

/* Header Actions */
.smash-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--smash-space-sm);
}

.smash-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--smash-space-xs);
  padding: var(--smash-space-sm) var(--smash-space-md);
  color: var(--smash-gray-700);
  text-decoration: none;
  border: none;
  background: transparent;
  border-radius: var(--smash-radius-md);
  transition: all var(--smash-transition-fast);
  cursor: pointer;
  font-size: 0.875rem;
}

.smash-action-btn:hover {
  color: var(--smash-primary);
  background-color: var(--smash-gray-100);
}

.smash-action-btn i {
  font-size: 1.125rem;
}

/* Cart Wrapper */
.smash-cart-wrapper #cart > .btn {
  background-color: var(--smash-primary);
  color: var(--smash-white);
  border: none;
  border-radius: var(--smash-radius-md);
  padding: var(--smash-space-sm) var(--smash-space-md);
  transition: all var(--smash-transition-fast);
}

.smash-cart-wrapper #cart > .btn:hover {
  background-color: var(--smash-primary-dark);
}

.smash-cart-wrapper .dropdown-menu {
  border: none;
  box-shadow: var(--smash-shadow-xl);
  border-radius: var(--smash-radius-lg);
  padding: var(--smash-space-md);
  min-width: 320px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.smash-nav {
  background-color: var(--smash-gray-900);
  padding: 0;
  border-bottom: 1px solid var(--smash-gray-800);
}

.smash-nav .navbar-nav {
  display: flex;
  flex-wrap: wrap;
}

.smash-nav .nav-item {
  position: relative;
}

.smash-nav .nav-link {
  color: var(--smash-white) !important;
  padding: var(--smash-space-md) var(--smash-space-lg) !important;
  font-weight: var(--smash-font-medium);
  font-size: 0.9375rem;
  transition: all var(--smash-transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.smash-nav .nav-link:hover,
.smash-nav .nav-link.active {
  background-color: var(--smash-primary);
}

.smash-nav .dropdown-menu {
  background-color: var(--smash-white);
  border: none;
  box-shadow: var(--smash-shadow-lg);
  border-radius: 0 0 var(--smash-radius-md) var(--smash-radius-md);
  margin-top: 0;
  padding: var(--smash-space-sm) 0;
}

.smash-nav .dropdown-item {
  padding: var(--smash-space-sm) var(--smash-space-lg);
  color: var(--smash-gray-800);
  font-weight: var(--smash-font-medium);
}

.smash-nav .dropdown-item:hover {
  background-color: var(--smash-gray-100);
  color: var(--smash-primary);
}

/* Mobile Menu */
.smash-offcanvas {
  max-width: 320px;
  background-color: var(--smash-white);
}

.smash-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--smash-gray-200);
  padding: var(--smash-space-lg);
}

.smash-offcanvas .offcanvas-body {
  padding: var(--smash-space-lg);
}

.smash-mobile-nav .nav-link {
  display: block;
  padding: var(--smash-space-md) 0;
  color: var(--smash-dark);
  font-weight: var(--smash-font-medium);
  border-bottom: 1px solid var(--smash-gray-200);
}

.smash-mobile-nav .nav-link:hover {
  color: var(--smash-primary);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.smash-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--smash-space-sm);
  padding: 0.75rem 1.5rem;
  font-family: var(--smash-font-family);
  font-size: 0.9375rem;
  font-weight: var(--smash-font-semibold);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--smash-btn-radius);
  cursor: pointer;
  transition: all var(--smash-transition-fast);
  white-space: nowrap;
}

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

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

.smash-btn-secondary {
  background-color: var(--smash-secondary);
  color: var(--smash-white);
  border-color: var(--smash-secondary);
}

.smash-btn-secondary:hover {
  background-color: var(--smash-secondary-dark);
  border-color: var(--smash-secondary-dark);
  color: var(--smash-white);
}

.smash-btn-outline {
  background-color: transparent;
  color: var(--smash-primary);
  border-color: var(--smash-primary);
}

.smash-btn-outline:hover {
  background-color: var(--smash-primary);
  color: var(--smash-white);
}

.smash-btn-dark {
  background-color: var(--smash-dark);
  color: var(--smash-white);
  border-color: var(--smash-dark);
}

.smash-btn-dark:hover {
  background-color: var(--smash-gray-800);
  border-color: var(--smash-gray-800);
}

.smash-btn-danger {
  background-color: var(--smash-danger);
  color: var(--smash-white);
  border-color: var(--smash-danger);
}

.smash-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.smash-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.smash-input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--smash-font-family);
  font-size: 1rem;
  color: var(--smash-dark);
  background-color: var(--smash-white);
  border: 2px solid var(--smash-gray-300);
  border-radius: var(--smash-radius-md);
  transition: all var(--smash-transition-fast);
}

.smash-input:focus {
  border-color: var(--smash-primary);
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.1);
  outline: none;
}

.smash-input::placeholder {
  color: var(--smash-gray-500);
}

/* ==========================================================================
   Cards
   ========================================================================== */
.smash-card {
  background-color: var(--smash-white);
  border-radius: var(--smash-radius-lg);
  box-shadow: var(--smash-shadow-sm);
  overflow: hidden;
  transition: all var(--smash-transition-normal);
}

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

.smash-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.smash-card-body {
  padding: var(--smash-space-lg);
}

.smash-card-title {
  font-size: 1rem;
  font-weight: var(--smash-font-semibold);
  margin-bottom: var(--smash-space-sm);
  color: var(--smash-dark);
}

.smash-card-price {
  font-size: 1.25rem;
  font-weight: var(--smash-font-bold);
  color: var(--smash-primary);
}

.smash-card-price-old {
  font-size: 0.875rem;
  color: var(--smash-gray-500);
  text-decoration: line-through;
  margin-right: var(--smash-space-sm);
}

/* ==========================================================================
   Product Grid
   ========================================================================== */
.smash-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--smash-space-xl);
}

@media (max-width: 1199px) {
  .smash-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .smash-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--smash-space-lg);
  }
}

@media (max-width: 575px) {
  .smash-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--smash-space-md);
  }
}

/* Product Card */
.smash-product-card {
  position: relative;
  background-color: var(--smash-white);
  border-radius: var(--smash-radius-lg);
  overflow: hidden;
  transition: all var(--smash-transition-normal);
}

.smash-product-card:hover {
  box-shadow: var(--smash-shadow-lg);
}

.smash-product-card:hover .smash-product-actions {
  opacity: 1;
  transform: translateY(0);
}

.smash-product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background-color: var(--smash-gray-100);
}

.smash-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--smash-transition-slow);
}

.smash-product-card:hover .smash-product-image img {
  transform: scale(1.05);
}

.smash-product-badge {
  position: absolute;
  top: var(--smash-space-md);
  left: var(--smash-space-md);
  padding: var(--smash-space-xs) var(--smash-space-sm);
  font-size: 0.75rem;
  font-weight: var(--smash-font-bold);
  text-transform: uppercase;
  border-radius: var(--smash-radius-sm);
  z-index: 1;
}

.smash-product-badge-sale {
  background-color: var(--smash-primary);
  color: var(--smash-white);
}

.smash-product-badge-new {
  background-color: var(--smash-success);
  color: var(--smash-white);
}

.smash-product-actions {
  position: absolute;
  bottom: var(--smash-space-md);
  left: var(--smash-space-md);
  right: var(--smash-space-md);
  display: flex;
  gap: var(--smash-space-sm);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--smash-transition-normal);
}

.smash-product-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--smash-space-sm);
  background-color: var(--smash-white);
  color: var(--smash-dark);
  border: none;
  border-radius: var(--smash-radius-md);
  cursor: pointer;
  transition: all var(--smash-transition-fast);
}

.smash-product-action-btn:hover {
  background-color: var(--smash-primary);
  color: var(--smash-white);
}

.smash-product-content {
  padding: var(--smash-space-md);
}

.smash-product-title {
  font-size: 0.9375rem;
  font-weight: var(--smash-font-medium);
  margin-bottom: var(--smash-space-xs);
  color: var(--smash-dark);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.smash-product-title:hover {
  color: var(--smash-primary);
}

.smash-product-price {
  display: flex;
  align-items: center;
  gap: var(--smash-space-sm);
}

.smash-price-current {
  font-size: 1.125rem;
  font-weight: var(--smash-font-bold);
  color: var(--smash-primary);
}

.smash-price-old {
  font-size: 0.875rem;
  color: var(--smash-gray-500);
  text-decoration: line-through;
}

.smash-product-rating {
  display: flex;
  align-items: center;
  gap: var(--smash-space-xs);
  margin-top: var(--smash-space-xs);
}

.smash-product-rating i {
  color: var(--smash-accent);
  font-size: 0.75rem;
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.smash-newsletter-section {
  background: linear-gradient(135deg, var(--smash-dark) 0%, var(--smash-gray-800) 100%);
  padding: var(--smash-space-3xl) 0;
  margin-top: var(--smash-space-3xl);
}

.smash-newsletter-box {
  text-align: center;
}

@media (min-width: 992px) {
  .smash-newsletter-box {
    text-align: left;
  }
}

.smash-newsletter-title {
  color: var(--smash-white);
  font-size: 1.75rem;
  font-weight: var(--smash-font-bold);
  margin-bottom: var(--smash-space-sm);
}

.smash-newsletter-desc {
  color: var(--smash-gray-400);
  margin-bottom: var(--smash-space-lg);
}

@media (min-width: 992px) {
  .smash-newsletter-desc {
    margin-bottom: 0;
  }
}

.smash-newsletter-form .input-group {
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .smash-newsletter-form .input-group {
    margin: 0 0 0 auto;
  }
}

.smash-newsletter-form .form-control {
  padding: 1rem 1.25rem;
  border: none;
  border-radius: var(--smash-radius-full) 0 0 var(--smash-radius-full);
  font-size: 1rem;
}

.smash-newsletter-form .smash-btn {
  border-radius: 0 var(--smash-radius-full) var(--smash-radius-full) 0;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
/* Override OpenCart default footer absolute positioning */
footer,
.smash-footer,
#smash-footer {
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
}

.smash-footer {
  background-color: var(--smash-gray-900);
  color: var(--smash-gray-400);
  padding-top: var(--smash-space-2xl);
  border: none;
}

/* Trust Section */
.smash-trust-section {
  background-color: var(--smash-gray-800);
  padding: var(--smash-space-xl) 0;
  border-top: 1px solid var(--smash-gray-700);
  border-bottom: 1px solid var(--smash-gray-700);
}

/* Trust Bar (inside footer) */
.smash-trust-bar {
  border-bottom: 1px solid var(--smash-gray-800);
  padding-bottom: var(--smash-space-xl);
  margin-bottom: var(--smash-space-xl);
}

.smash-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--smash-space-sm);
  color: var(--smash-gray-400);
}

.smash-trust-item i {
  font-size: 1.75rem;
  color: var(--smash-secondary);
}

.smash-trust-item span {
  font-size: 0.875rem;
  font-weight: var(--smash-font-medium);
}

/* Footer Content */
.smash-footer-content {
  padding-bottom: var(--smash-space-xl);
}

.smash-footer-brand {
  margin-bottom: var(--smash-space-lg);
}

.smash-footer-logo {
  font-family: var(--smash-heading-font);
  font-size: 1.5rem;
  font-weight: var(--smash-font-extrabold);
  color: var(--smash-white);
  margin-bottom: var(--smash-space-sm);
}

.smash-footer-tagline {
  font-size: 0.875rem;
  color: var(--smash-gray-500);
  margin-bottom: var(--smash-space-md);
}

.smash-social-links {
  display: flex;
  gap: var(--smash-space-sm);
}

.smash-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--smash-gray-800);
  color: var(--smash-gray-400);
  border-radius: var(--smash-radius-full);
  transition: all var(--smash-transition-fast);
}

.smash-social-link:hover {
  background-color: var(--smash-primary);
  color: var(--smash-white);
}

.smash-footer-heading {
  font-size: 1rem;
  font-weight: var(--smash-font-semibold);
  color: var(--smash-white);
  margin-bottom: var(--smash-space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.smash-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.smash-footer-links li {
  margin-bottom: var(--smash-space-sm);
}

.smash-footer-links a {
  color: var(--smash-gray-400);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color var(--smash-transition-fast);
}

.smash-footer-links a:hover {
  color: var(--smash-primary);
}

/* Footer Bottom */
.smash-footer-bottom {
  border-top: 1px solid var(--smash-gray-800);
  padding: var(--smash-space-lg) 0;
}

.smash-copyright {
  font-size: 0.875rem;
  color: var(--smash-gray-500);
  margin: 0;
}

.smash-powered {
  display: block;
  margin-top: var(--smash-space-xs);
  font-size: 0.75rem;
  color: var(--smash-gray-600);
}

@media (min-width: 768px) {
  .smash-powered {
    display: inline;
    margin-top: 0;
    margin-left: var(--smash-space-sm);
  }
}

.smash-payment-icons {
  display: flex;
  justify-content: center;
  gap: var(--smash-space-md);
  font-size: 1.75rem;
  color: var(--smash-gray-600);
  margin-top: var(--smash-space-md);
}

@media (min-width: 768px) {
  .smash-payment-icons {
    justify-content: flex-end;
    margin-top: 0;
  }
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.smash-breadcrumb {
  background-color: var(--smash-gray-100);
  padding: var(--smash-space-md) 0;
  margin-bottom: var(--smash-space-lg);
}

.smash-breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  background: none;
}

.smash-breadcrumb .breadcrumb-item {
  font-size: 0.875rem;
}

.smash-breadcrumb .breadcrumb-item a {
  color: var(--smash-gray-600);
  text-decoration: none;
}

.smash-breadcrumb .breadcrumb-item a:hover {
  color: var(--smash-primary);
}

.smash-breadcrumb .breadcrumb-item.active {
  color: var(--smash-dark);
  font-weight: var(--smash-font-medium);
}

/* ==========================================================================
   Alerts
   ========================================================================== */
.smash-alerts {
  position: fixed;
  top: var(--smash-space-lg);
  right: var(--smash-space-lg);
  z-index: var(--smash-z-tooltip);
  max-width: 400px;
}

.smash-alert {
  display: flex;
  align-items: flex-start;
  gap: var(--smash-space-md);
  padding: var(--smash-space-md);
  border-radius: var(--smash-radius-md);
  margin-bottom: var(--smash-space-sm);
  box-shadow: var(--smash-shadow-lg);
  animation: smash-slideIn 0.3s ease;
}

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

.smash-alert-success {
  background-color: #d4edda;
  border-left: 4px solid var(--smash-success);
  color: #155724;
}

.smash-alert-danger {
  background-color: #f8d7da;
  border-left: 4px solid var(--smash-danger);
  color: #721c24;
}

.smash-alert-warning {
  background-color: #fff3cd;
  border-left: 4px solid var(--smash-warning);
  color: #856404;
}

.smash-alert-info {
  background-color: #d1ecf1;
  border-left: 4px solid var(--smash-info);
  color: #0c5460;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.smash-text-primary { color: var(--smash-primary) !important; }
.smash-text-secondary { color: var(--smash-secondary) !important; }
.smash-text-success { color: var(--smash-success) !important; }
.smash-text-danger { color: var(--smash-danger) !important; }
.smash-text-muted { color: var(--smash-gray-500) !important; }

.smash-bg-primary { background-color: var(--smash-primary) !important; }
.smash-bg-secondary { background-color: var(--smash-secondary) !important; }
.smash-bg-light { background-color: var(--smash-light) !important; }
.smash-bg-dark { background-color: var(--smash-dark) !important; }

.smash-rounded { border-radius: var(--smash-radius-md) !important; }
.smash-rounded-lg { border-radius: var(--smash-radius-lg) !important; }
.smash-rounded-full { border-radius: var(--smash-radius-full) !important; }

.smash-shadow { box-shadow: var(--smash-shadow-md) !important; }
.smash-shadow-lg { box-shadow: var(--smash-shadow-lg) !important; }

/* ==========================================================================
   OpenCart Bootstrap Overrides
   ========================================================================== */
.btn-primary {
  background-color: var(--smash-primary);
  border-color: var(--smash-primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--smash-primary-dark);
  border-color: var(--smash-primary-dark);
}

.btn-outline-primary {
  color: var(--smash-primary);
  border-color: var(--smash-primary);
}

.btn-outline-primary:hover {
  background-color: var(--smash-primary);
  border-color: var(--smash-primary);
}

a {
  color: var(--smash-primary);
}

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

.breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

/* Form Controls */
.form-control:focus,
.form-select:focus {
  border-color: var(--smash-primary);
  box-shadow: 0 0 0 0.25rem rgba(229, 57, 53, 0.25);
}

/* Pagination */
.pagination .page-link {
  color: var(--smash-primary);
}

.pagination .page-item.active .page-link {
  background-color: var(--smash-primary);
  border-color: var(--smash-primary);
}

/* Product Thumb Override - Dark Theme */
.product-thumb {
  border: none;
  border-radius: var(--smash-radius-lg);
  overflow: hidden;
  transition: all var(--smash-transition-normal);
  background-color: var(--smash-gray-800);
  color: var(--smash-light);
}

.product-thumb:hover {
  box-shadow: var(--smash-shadow-lg);
  background-color: var(--smash-gray-700);
}

.product-thumb .image {
  overflow: hidden;
  background-color: var(--smash-white);
}

.product-thumb .image img {
  transition: transform var(--smash-transition-slow);
}

.product-thumb:hover .image img {
  transform: scale(1.05);
}

.product-thumb .content {
  padding: var(--smash-space-md);
}

.product-thumb .caption h4 a,
.product-thumb h4 a {
  color: var(--smash-light);
}

.product-thumb .caption h4 a:hover,
.product-thumb h4 a:hover {
  color: var(--smash-secondary);
}

.product-thumb .caption p,
.product-thumb .description {
  color: var(--smash-gray-400);
}

.product-thumb .price,
.product-thumb .price-new {
  color: var(--smash-secondary);
  font-weight: var(--smash-font-bold);
}

.product-thumb .price-old {
  color: var(--smash-gray-500);
}

.product-thumb .button-group button {
  background-color: var(--smash-gray-700);
  border-color: var(--smash-gray-600);
  color: var(--smash-light);
}

.product-thumb .button-group button:hover {
  background-color: var(--smash-primary);
  border-color: var(--smash-primary);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 767px) {
  .smash-top-bar {
    display: none;
  }

  .smash-header {
    padding: var(--smash-space-sm) 0;
  }

  .smash-brand-name {
    font-size: 1.25rem;
  }

  .smash-main {
    padding-top: var(--smash-space-md);
    padding-bottom: var(--smash-space-xl);
  }

  .smash-newsletter-section {
    padding: var(--smash-space-xl) 0;
  }

  .smash-newsletter-title {
    font-size: 1.25rem;
  }

  .smash-footer-content {
    text-align: center;
  }

  .smash-footer-brand {
    margin-bottom: var(--smash-space-xl);
  }

  .smash-social-links {
    justify-content: center;
  }
}

/* Print Styles */
@media print {
  .smash-announcement-bar,
  .smash-top-bar,
  .smash-header-actions,
  .smash-nav,
  .smash-newsletter-section,
  .smash-footer {
    display: none !important;
  }

  .smash-main {
    padding: 0;
  }
}

/* ==========================================================================
   Dark Theme Overrides for OpenCart Default Elements
   ========================================================================== */

/* General text and headings */
.smash-theme h1, .smash-theme h2, .smash-theme h3,
.smash-theme h4, .smash-theme h5, .smash-theme h6 {
  color: var(--smash-light);
}

.smash-theme a {
  color: var(--smash-primary);
}

.smash-theme a:hover {
  color: var(--smash-secondary);
}

/* Carousel/Slideshow */
.smash-theme .swiper,
.smash-theme .carousel {
  background-color: var(--smash-gray-800);
  border-radius: var(--smash-radius-lg);
}

/* Banners */
.smash-theme #slideshow0,
.smash-theme #carousel0,
.smash-theme .swiper-viewport {
  border: none;
  border-radius: var(--smash-radius-lg);
  overflow: hidden;
}

/* Cards and panels */
.smash-theme .card,
.smash-theme .panel {
  background-color: var(--smash-gray-800);
  border-color: var(--smash-gray-700);
  color: var(--smash-light);
}

/* Form inputs */
.smash-theme .form-control,
.smash-theme input[type="text"],
.smash-theme input[type="email"],
.smash-theme input[type="password"],
.smash-theme textarea,
.smash-theme select {
  background-color: var(--smash-gray-800);
  border-color: var(--smash-gray-600);
  color: var(--smash-light);
}

.smash-theme .form-control:focus {
  background-color: var(--smash-gray-700);
  border-color: var(--smash-primary);
  color: var(--smash-light);
}

.smash-theme .form-control::placeholder {
  color: var(--smash-gray-500);
}

/* Buttons */
.smash-theme .btn-primary {
  background: linear-gradient(135deg, var(--smash-primary-dark), var(--smash-primary));
  border-color: var(--smash-primary);
}

.smash-theme .btn-primary:hover {
  background: linear-gradient(135deg, var(--smash-primary), var(--smash-primary-light));
}

.smash-theme .btn-default,
.smash-theme .btn-secondary {
  background-color: var(--smash-gray-700);
  border-color: var(--smash-gray-600);
  color: var(--smash-light);
}

.smash-theme .btn-default:hover,
.smash-theme .btn-secondary:hover {
  background-color: var(--smash-gray-600);
  color: var(--smash-light);
}

/* Navigation menu override */
.smash-theme #menu,
.smash-theme #menu.navbar,
.smash-theme .navbar.bg-primary,
#menu,
#menu.navbar,
.navbar.bg-primary {
  background-color: #1e3a5f !important;
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%) !important;
  border: none;
}

.smash-theme #menu .nav > li > a,
#menu .nav > li > a {
  color: var(--smash-light) !important;
}

.smash-theme #menu .nav > li > a:hover,
#menu .nav > li > a:hover {
  color: var(--smash-secondary) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.smash-theme #menu .dropdown-menu,
#menu .dropdown-menu {
  background-color: #1e3a5f;
  border-color: #2c5282;
}

.smash-theme #menu .dropdown-menu a,
#menu .dropdown-menu a {
  color: var(--smash-gray-300);
}

.smash-theme #menu .dropdown-menu a:hover,
#menu .dropdown-menu a:hover {
  background-color: #2c5282;
  color: var(--smash-secondary);
}

/* Content sections */
.smash-theme #content {
  background-color: transparent;
}

/* Breadcrumbs */
.smash-theme .breadcrumb {
  background-color: transparent;
}

.smash-theme .breadcrumb a {
  color: var(--smash-gray-400);
}

.smash-theme .breadcrumb a:hover {
  color: var(--smash-secondary);
}

/* Manufacturer/brand carousel */
.smash-theme #carousel-manufacturer {
  background-color: var(--smash-gray-800);
  padding: var(--smash-space-lg);
  border-radius: var(--smash-radius-lg);
}

/* ==========================================================================
   Product Page Dark Theme Overrides
   ========================================================================== */

/* Product page main content */
.smash-theme #product-info,
.smash-theme .product-info {
  color: var(--smash-light);
}

/* Product title */
.smash-theme #product-info h1,
.smash-theme .product-info h1 {
  color: var(--smash-light);
}

/* Product price */
.smash-theme .price-new,
.smash-theme #product-info .price-new {
  color: var(--smash-secondary) !important;
  font-size: 1.5rem;
  font-weight: var(--smash-font-bold);
}

.smash-theme .price-old,
.smash-theme #product-info .price-old {
  color: var(--smash-gray-500) !important;
}

/* Product description text */
.smash-theme #product-info p,
.smash-theme .product-info p {
  color: var(--smash-gray-300);
}

/* Tabs styling */
.smash-theme .nav-tabs {
  border-bottom-color: var(--smash-gray-700);
  background-color: transparent;
}

.smash-theme .nav-tabs .nav-link {
  color: var(--smash-gray-400);
  background-color: transparent;
  border-color: transparent;
}

.smash-theme .nav-tabs .nav-link:hover {
  color: var(--smash-light);
  border-color: var(--smash-gray-700) var(--smash-gray-700) transparent;
  background-color: var(--smash-gray-800);
}

.smash-theme .nav-tabs .nav-link.active {
  color: var(--smash-light);
  background-color: var(--smash-gray-800);
  border-color: var(--smash-gray-700) var(--smash-gray-700) var(--smash-gray-800);
}

/* Tab content */
.smash-theme .tab-content {
  color: var(--smash-gray-300);
  background-color: transparent;
}

.smash-theme .tab-content p,
.smash-theme .tab-content div,
.smash-theme .tab-content span,
.smash-theme .tab-content li {
  color: var(--smash-gray-300) !important;
}

.smash-theme .tab-content h1,
.smash-theme .tab-content h2,
.smash-theme .tab-content h3,
.smash-theme .tab-content h4,
.smash-theme .tab-content h5,
.smash-theme .tab-content h6 {
  color: var(--smash-light) !important;
}

/* Tab pane description */
.smash-theme #tab-description,
.smash-theme .tab-pane {
  color: var(--smash-gray-300);
}

.smash-theme #tab-description p,
.smash-theme #tab-description div,
.smash-theme #tab-description span {
  color: var(--smash-gray-300) !important;
}

/* Product details table */
.smash-theme .table {
  color: var(--smash-light);
  background-color: var(--smash-gray-800);
}

.smash-theme .table td,
.smash-theme .table th {
  color: var(--smash-light) !important;
  border-color: var(--smash-gray-700);
  background-color: var(--smash-gray-800);
}

.smash-theme .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: var(--smash-gray-900);
}

.smash-theme .table-striped > tbody > tr:nth-of-type(odd) td {
  background-color: var(--smash-gray-900);
}

/* Specification tab table */
.smash-theme #tab-specification .table,
.smash-theme #tab-specification table {
  background-color: var(--smash-gray-800);
  color: var(--smash-light);
}

.smash-theme #tab-specification .table td,
.smash-theme #tab-specification .table th,
.smash-theme #tab-specification td,
.smash-theme #tab-specification th {
  color: var(--smash-light) !important;
  background-color: var(--smash-gray-800) !important;
  border-color: var(--smash-gray-600) !important;
  padding: 0.75rem;
}

.smash-theme #tab-specification .table thead th,
.smash-theme #tab-specification thead th {
  background-color: var(--smash-gray-900) !important;
  color: var(--smash-secondary) !important;
  font-weight: var(--smash-font-semibold);
}

.smash-theme #tab-specification .table-striped > tbody > tr:nth-of-type(odd) td {
  background-color: var(--smash-gray-900) !important;
}

/* Quantity input */
.smash-theme .input-group .form-control {
  background-color: var(--smash-gray-800);
  border-color: var(--smash-gray-600);
  color: var(--smash-light);
}

/* Product thumbnails */
.smash-theme .thumbnail,
.smash-theme .image-additional img {
  border-color: var(--smash-gray-700);
  background-color: var(--smash-white);
}

/* Reviews section */
.smash-theme #review p,
.smash-theme .review-list p {
  color: var(--smash-gray-300) !important;
}

/* Rating stars */
.smash-theme .rating .fa-star,
.smash-theme .rating .fa-star-half-alt {
  color: var(--smash-secondary);
}

.smash-theme .rating .fa-star-o,
.smash-theme .rating .far.fa-star {
  color: var(--smash-gray-600);
}

/* List group items */
.smash-theme .list-group-item {
  background-color: var(--smash-gray-800);
  border-color: var(--smash-gray-700);
  color: var(--smash-gray-300);
}

/* Well/alert boxes */
.smash-theme .well,
.smash-theme .alert-info {
  background-color: var(--smash-gray-800);
  border-color: var(--smash-gray-700);
  color: var(--smash-gray-300);
}

/* Category page / product list */
.smash-theme #content p,
.smash-theme #content span,
.smash-theme #column-left p,
.smash-theme #column-right p {
  color: var(--smash-gray-300);
}

/* Sidebar/Column styling */
.smash-theme #column-left .list-group-item,
.smash-theme #column-right .list-group-item {
  background-color: var(--smash-gray-800);
  border-color: var(--smash-gray-700);
  color: var(--smash-gray-300);
}

.smash-theme #column-left .list-group-item a,
.smash-theme #column-right .list-group-item a {
  color: var(--smash-gray-300);
}

.smash-theme #column-left .list-group-item a:hover,
.smash-theme #column-right .list-group-item a:hover {
  color: var(--smash-secondary);
}

/* ==========================================================================
   Homepage Specific Fixes
   ========================================================================== */

/* Top bar / Currency bar - dark navy background, no white space */
.smash-theme #top,
.smash-theme .smash-top-bar,
.smash-theme .smash-combined-top-bar,
#top {
  margin: 0 !important;
}

/* Remove white space between header sections */
.smash-theme .smash-header,
.smash-header {
  margin-top: 0 !important;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Slideshow / Carousel - white background, gold border, no dark bands */
.smash-theme #slideshow0,
.smash-theme .swiper-viewport,
.smash-theme .swiper,
.smash-theme .carousel,
#slideshow0,
.swiper-viewport {
  background-color: var(--smash-white) !important;
  border: 2px solid var(--smash-secondary) !important;
  border-radius: var(--smash-radius-lg) !important;
  overflow: hidden !important;
}

/* Remove dark side bands on slideshow */
.smash-theme #slideshow0 .swiper-slide,
.smash-theme .swiper-slide,
#slideshow0 .swiper-slide {
  background-color: var(--smash-white) !important;
}

.smash-theme #slideshow0 img,
#slideshow0 img {
  background-color: var(--smash-white) !important;
}

/* Product cards - white background for images, gold border */
.smash-theme .product-thumb,
.product-thumb {
  background-color: var(--smash-gray-800) !important;
  border: 2px solid var(--smash-secondary) !important;
  border-radius: var(--smash-radius-lg) !important;
  overflow: hidden;
}

.smash-theme .product-thumb .image,
.product-thumb .image {
  background-color: var(--smash-white) !important;
}

.smash-theme .product-thumb .image img,
.product-thumb .image img {
  background-color: var(--smash-white) !important;
}

/* Product card content area */
.smash-theme .product-thumb .content,
.smash-theme .product-thumb .caption,
.product-thumb .content,
.product-thumb .caption {
  background-color: var(--smash-gray-800);
  padding: var(--smash-space-md);
}

/* Ensure product-thumb uses flex layout for footer */
.smash-theme .product-thumb,
.product-thumb {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  position: relative !important;
  cursor: pointer !important;
  transition: all var(--smash-transition-fast) !important;
}

/* Make entire card clickable via stretched link */
.smash-theme .product-thumb .image a::after,
.product-thumb .image a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* Ensure buttons are above the stretched link */
.smash-theme .product-thumb .button-group,
.smash-theme .product-thumb .button,
.smash-theme .product-thumb .content .button,
.product-thumb .button-group,
.product-thumb .button,
.product-thumb .content .button {
  position: relative !important;
  z-index: 2 !important;
}

/* Card hover effect */
.smash-theme .product-thumb:hover,
.product-thumb:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.smash-theme .product-thumb .content,
.smash-theme .product-thumb .caption,
.product-thumb .content,
.product-thumb .caption {
  flex: 1 !important;
  padding: var(--smash-space-md) !important;
}

/* Product card button group - full width card footer */
.smash-theme .product-thumb .button-group,
.smash-theme .product-thumb .button,
.smash-theme .product-thumb .content .button,
.product-thumb .button-group,
.product-thumb .button,
.product-thumb .content .button {
  background-color: var(--smash-gray-700) !important;
  border-top: 1px solid var(--smash-gray-600) !important;
  display: flex !important;
  width: calc(100% + 2rem) !important;
  margin: 1rem -1rem -1rem -1rem !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

.smash-theme .product-thumb .button-group button,
.smash-theme .product-thumb .button button,
.smash-theme .product-thumb .content .button button,
.product-thumb .button-group button,
.product-thumb .button button,
.product-thumb .content .button button {
  flex: 1 1 33.333% !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0.75rem 0.5rem !important;
  margin: 0 !important;
  background-color: var(--smash-gray-700) !important;
  color: var(--smash-light) !important;
  transition: all var(--smash-transition-fast);
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.smash-theme .product-thumb .button-group button i,
.smash-theme .product-thumb .button button i,
.product-thumb .button-group button i,
.product-thumb .button button i {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.smash-theme .product-thumb .button-group button:hover,
.smash-theme .product-thumb .button button:hover,
.product-thumb .button-group button:hover,
.product-thumb .button button:hover {
  background-color: var(--smash-primary) !important;
  color: var(--smash-white) !important;
}

.smash-theme .product-thumb .button-group button:not(:last-child),
.smash-theme .product-thumb .button button:not(:last-child),
.product-thumb .button-group button:not(:last-child),
.product-thumb .button button:not(:last-child) {
  border-right: 1px solid var(--smash-gray-600) !important;
}

/* Manufacturer / Brand carousel - white background, gold border */
.smash-theme #carousel-manufacturer,
.smash-theme #carousel0,
.smash-theme .swiper-container-manufacturer,
#carousel-manufacturer,
#carousel0 {
  background-color: var(--smash-white) !important;
  border: 2px solid var(--smash-secondary) !important;
  border-radius: var(--smash-radius-lg) !important;
  padding: var(--smash-space-lg) !important;
}

/* Manufacturer carousel slides */
.smash-theme #carousel-manufacturer .swiper-slide,
.smash-theme #carousel0 .swiper-slide,
#carousel-manufacturer .swiper-slide,
#carousel0 .swiper-slide {
  background-color: var(--smash-white) !important;
}

/* Manufacturer images */
.smash-theme #carousel-manufacturer img,
.smash-theme #carousel0 img,
#carousel-manufacturer img,
#carousel0 img {
  background-color: var(--smash-white) !important;
}

/* Swiper navigation arrows */
.smash-theme .swiper-button-next,
.smash-theme .swiper-button-prev {
  color: var(--smash-secondary) !important;
  background-color: var(--smash-white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* Swiper pagination dots */
.smash-theme .swiper-pagination-bullet {
  background-color: var(--smash-gray-500);
}

.smash-theme .swiper-pagination-bullet-active {
  background-color: var(--smash-secondary);
}

/* ==========================================================================
   Page Loading Spinner
   ========================================================================== */
.smash-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--smash-gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.smash-page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.smash-spinner {
  width: 50px;
  height: 50px;
  position: relative;
}

.smash-spinner::before,
.smash-spinner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.smash-spinner::before {
  width: 100%;
  height: 100%;
  border: 4px solid var(--smash-gray-700);
  border-top-color: var(--smash-secondary);
  animation: smash-spin 1s linear infinite;
}

.smash-spinner::after {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border: 4px solid var(--smash-gray-700);
  border-bottom-color: var(--smash-primary);
  animation: smash-spin 0.8s linear infinite reverse;
}

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

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */
.smash-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--smash-secondary) 0%, var(--smash-secondary-dark) 100%);
  color: var(--smash-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.smash-scroll-top:hover {
  background: linear-gradient(135deg, var(--smash-secondary-light) 0%, var(--smash-secondary) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.smash-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.smash-scroll-top i {
  transition: transform 0.2s ease;
}

.smash-scroll-top:hover i {
  transform: translateY(-2px);
}

/* ==========================================================================
   Google Translate Widget Styling
   ========================================================================== */

/* Hide Google Translate top banner/iframe - but NOT the dropdown menu */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
}

/* Hide only the top notification bar, not the language menu */
body > .skiptranslate:first-of-type {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Ensure the language dropdown menu iframe is visible */
iframe.goog-te-menu-frame,
.goog-te-menu-frame {
  display: block !important;
  visibility: visible !important;
  z-index: 999999 !important;
  position: absolute !important;
}

body {
  top: 0 !important;
}

/* Style the Google Translate dropdown */
#google_translate_element {
  display: inline-block;
  vertical-align: middle;
}

#google_translate_element .goog-te-gadget {
  font-family: var(--smash-font-family) !important;
  font-size: 0.8125rem !important;
  color: var(--smash-dark) !important;
}

#google_translate_element .goog-te-gadget-simple {
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  font-size: 0.8125rem !important;
  line-height: 1.4 !important;
  display: inline-flex !important;
  align-items: center !important;
  cursor: pointer !important;
}

/* Hide Google logo image but show globe icon */
#google_translate_element .goog-te-gadget-icon {
  display: none !important;
}

/* Style the language link */
#google_translate_element .goog-te-gadget-simple a {
  color: var(--smash-dark) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
}

#google_translate_element .goog-te-gadget-simple a::before {
  content: '\f0ac';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 0.375rem;
  font-size: 0.875rem;
}

#google_translate_element .goog-te-gadget-simple a span {
  color: var(--smash-dark) !important;
}

/* Hide the separator and extra images */
#google_translate_element .goog-te-gadget-simple img {
  display: none !important;
}

#google_translate_element .goog-te-gadget-simple a span[style*="border-left"] {
  display: none !important;
}

/* Hide "Powered by Google" text and logo link */
#google_translate_element .goog-te-gadget > span,
#google_translate_element .goog-logo-link,
.goog-logo-link,
#google_translate_element a[href*="translate.google.com"],
#google_translate_element .goog-te-gadget span:not(.goog-te-menu-value) {
  display: none !important;
}

/* Hide any text nodes that say "Powered by" */
#google_translate_element .goog-te-gadget {
  font-size: 0 !important;
}

#google_translate_element .goog-te-gadget select,
#google_translate_element .goog-te-gadget .goog-te-gadget-simple {
  font-size: 0.8125rem !important;
}

/* Google Translate dropdown menu styling */
.goog-te-menu-frame {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
  z-index: 9999 !important;
}

/* Ensure Google Translate dropdown works properly */
.goog-te-menu2 {
  max-height: 300px !important;
  overflow-y: auto !important;
}

.skiptranslate {
  z-index: 9999 !important;
}

/* Google Translate combo/dropdown container */
.goog-te-combo {
  background-color: transparent !important;
  border: none !important;
  color: var(--smash-dark) !important;
  font-size: 0.8125rem !important;
  cursor: pointer !important;
  padding: 0.25rem !important;
}

/* Make sure dropdowns in fixed top bar work */
.smash-combined-top-bar .dropdown-menu,
.smash-combined-top-bar .goog-te-menu-frame {
  position: absolute !important;
  z-index: 9999 !important;
}

/* ==========================================================================
   Checkout Page Styles
   ========================================================================== */

/* Checkout accordion */
.smash-theme #checkout .accordion-item,
.smash-theme #checkout-checkout .accordion-item,
.smash-theme .accordion-item {
  background-color: var(--smash-gray-800) !important;
  border: 1px solid var(--smash-gray-700) !important;
  margin-bottom: 0.5rem;
}

.smash-theme #checkout .accordion-button,
.smash-theme #checkout-checkout .accordion-button,
.smash-theme .accordion-button {
  background-color: var(--smash-gray-800) !important;
  color: var(--smash-light) !important;
  font-weight: var(--smash-font-semibold);
  border: none !important;
  box-shadow: none !important;
}

.smash-theme #checkout .accordion-button:not(.collapsed),
.smash-theme #checkout-checkout .accordion-button:not(.collapsed),
.smash-theme .accordion-button:not(.collapsed) {
  background-color: var(--smash-gray-700) !important;
  color: var(--smash-secondary) !important;
}

.smash-theme #checkout .accordion-button::after,
.smash-theme #checkout-checkout .accordion-button::after,
.smash-theme .accordion-button::after {
  filter: invert(1);
}

.smash-theme #checkout .accordion-body,
.smash-theme #checkout-checkout .accordion-body,
.smash-theme .accordion-body {
  background-color: var(--smash-gray-800) !important;
  color: var(--smash-light) !important;
}

/* Checkout page - ALL text elements */
.smash-theme #checkout-checkout,
.smash-theme #checkout-checkout * {
  color: var(--smash-light);
}

/* Checkout section titles/headings */
.smash-theme #checkout-checkout h1,
.smash-theme #checkout-checkout h2,
.smash-theme #checkout-checkout h3,
.smash-theme #checkout-checkout h4,
.smash-theme #checkout-checkout h5,
.smash-theme #checkout-checkout legend,
.smash-theme #checkout-checkout .title,
.smash-theme [id*="checkout"] legend,
.smash-theme [id*="checkout"] h1,
.smash-theme [id*="checkout"] h2,
.smash-theme [id*="checkout"] h3,
.smash-theme [id*="checkout"] h4,
.smash-theme [id*="checkout"] h5 {
  color: var(--smash-light) !important;
}

/* Checkout forms - labels */
.smash-theme #checkout label,
.smash-theme #checkout-checkout label,
.smash-theme #checkout .form-label,
.smash-theme #checkout-checkout .form-label,
.smash-theme .checkout-section label,
.smash-theme [id*="checkout"] label {
  color: var(--smash-light) !important;
}

/* Checkout radio button labels */
.smash-theme #checkout-checkout .form-check-label,
.smash-theme #checkout-checkout input[type="radio"] + label,
.smash-theme #checkout-checkout input[type="checkbox"] + label,
.smash-theme [id*="checkout"] .form-check-label {
  color: var(--smash-light) !important;
}

/* Checkout fieldset legends */
.smash-theme #checkout-checkout fieldset legend,
.smash-theme [id*="checkout"] fieldset legend {
  color: var(--smash-secondary) !important;
  background-color: transparent !important;
}

.smash-theme #checkout .form-control,
.smash-theme #checkout .form-select,
.smash-theme #checkout input[type="text"],
.smash-theme #checkout input[type="email"],
.smash-theme #checkout input[type="tel"],
.smash-theme #checkout input[type="password"],
.smash-theme #checkout textarea,
.smash-theme #checkout select,
.smash-theme #checkout-checkout .form-control,
.smash-theme #checkout-checkout .form-select,
.smash-theme #checkout-checkout input[type="text"],
.smash-theme #checkout-checkout input[type="email"],
.smash-theme #checkout-checkout input[type="tel"],
.smash-theme #checkout-checkout textarea,
.smash-theme #checkout-checkout select,
.smash-theme [id*="checkout"] .form-control,
.smash-theme [id*="checkout"] .form-select {
  background-color: var(--smash-gray-700) !important;
  border: 1px solid var(--smash-gray-600) !important;
  color: var(--smash-light) !important;
}

.smash-theme #checkout .form-control:focus,
.smash-theme #checkout .form-select:focus,
.smash-theme #checkout-checkout .form-control:focus,
.smash-theme #checkout-checkout .form-select:focus {
  background-color: var(--smash-gray-700) !important;
  border-color: var(--smash-secondary) !important;
  box-shadow: 0 0 0 0.2rem rgba(201, 165, 92, 0.25) !important;
  color: var(--smash-light) !important;
}

.smash-theme #checkout .form-control::placeholder,
.smash-theme #checkout-checkout .form-control::placeholder,
.smash-theme [id*="checkout"] .form-control::placeholder {
  color: var(--smash-gray-500) !important;
}

/* Checkout text and paragraphs */
.smash-theme #checkout p,
.smash-theme #checkout span,
.smash-theme #checkout div,
.smash-theme #checkout td,
.smash-theme #checkout th,
.smash-theme #checkout li,
.smash-theme #checkout-checkout p,
.smash-theme #checkout-checkout span,
.smash-theme #checkout-checkout div,
.smash-theme #checkout-checkout td,
.smash-theme #checkout-checkout th,
.smash-theme #checkout-checkout li,
.smash-theme [id*="checkout"] p,
.smash-theme [id*="checkout"] span,
.smash-theme [id*="checkout"] div {
  color: var(--smash-light);
}

/* Checkout tables */
.smash-theme #checkout .table,
.smash-theme #checkout table,
.smash-theme #checkout-checkout .table,
.smash-theme #checkout-checkout table,
.smash-theme [id*="checkout"] .table {
  background-color: var(--smash-gray-800);
  color: var(--smash-light);
}

.smash-theme #checkout .table td,
.smash-theme #checkout .table th,
.smash-theme #checkout table td,
.smash-theme #checkout table th,
.smash-theme #checkout-checkout .table td,
.smash-theme #checkout-checkout .table th,
.smash-theme #checkout-checkout table td,
.smash-theme #checkout-checkout table th,
.smash-theme [id*="checkout"] .table td,
.smash-theme [id*="checkout"] .table th {
  background-color: var(--smash-gray-800) !important;
  color: var(--smash-light) !important;
  border-color: var(--smash-gray-700) !important;
}

.smash-theme #checkout .table thead th,
.smash-theme #checkout-checkout .table thead th {
  background-color: var(--smash-gray-900) !important;
  color: var(--smash-secondary) !important;
}

/* Checkout radio and checkbox */
.smash-theme #checkout .form-check-label,
.smash-theme #checkout-checkout .form-check-label,
.smash-theme [id*="checkout"] .form-check-label {
  color: var(--smash-light) !important;
}

.smash-theme #checkout .form-check-input,
.smash-theme #checkout-checkout .form-check-input,
.smash-theme [id*="checkout"] .form-check-input {
  background-color: var(--smash-gray-700);
  border-color: var(--smash-gray-600);
}

.smash-theme #checkout .form-check-input:checked,
.smash-theme #checkout-checkout .form-check-input:checked,
.smash-theme [id*="checkout"] .form-check-input:checked {
  background-color: var(--smash-secondary);
  border-color: var(--smash-secondary);
}

/* Checkout cards/panels */
.smash-theme #checkout .card,
.smash-theme #checkout .panel,
.smash-theme #checkout-checkout .card,
.smash-theme #checkout-checkout .panel,
.smash-theme [id*="checkout"] .card {
  background-color: var(--smash-gray-800) !important;
  border: 1px solid var(--smash-gray-700) !important;
}

.smash-theme #checkout .card-header,
.smash-theme #checkout .panel-heading {
  background-color: var(--smash-gray-900) !important;
  color: var(--smash-light) !important;
  border-color: var(--smash-gray-700) !important;
}

.smash-theme #checkout .card-body,
.smash-theme #checkout .panel-body {
  background-color: var(--smash-gray-800) !important;
  color: var(--smash-light) !important;
}

/* Checkout buttons */
.smash-theme #checkout .btn-primary {
  background-color: var(--smash-secondary) !important;
  border-color: var(--smash-secondary) !important;
  color: var(--smash-dark) !important;
}

.smash-theme #checkout .btn-primary:hover {
  background-color: var(--smash-secondary-dark) !important;
  border-color: var(--smash-secondary-dark) !important;
}

/* Cart page styles */
.smash-theme #content h1,
.smash-theme #content h2,
.smash-theme #content h3 {
  color: var(--smash-light);
}

.smash-theme #content p {
  color: var(--smash-gray-300);
}

/* Shopping cart table */
.smash-theme .table-responsive {
  background-color: var(--smash-gray-800);
}

.smash-theme #shopping-cart .table,
.smash-theme .shopping-cart .table {
  background-color: var(--smash-gray-800);
}

.smash-theme #shopping-cart .table td,
.smash-theme #shopping-cart .table th {
  background-color: var(--smash-gray-800) !important;
  color: var(--smash-light) !important;
  border-color: var(--smash-gray-700) !important;
  vertical-align: middle;
}

/* Account pages */
.smash-theme #account-login .card,
.smash-theme #account-register .card,
.smash-theme .account-content .card {
  background-color: var(--smash-gray-800) !important;
  border: 1px solid var(--smash-gray-700) !important;
}

.smash-theme #account-login .card-header,
.smash-theme #account-register .card-header {
  background-color: var(--smash-gray-900) !important;
  color: var(--smash-secondary) !important;
  border-color: var(--smash-gray-700) !important;
}

.smash-theme #account-login .card-body,
.smash-theme #account-register .card-body {
  background-color: var(--smash-gray-800) !important;
}

.smash-theme #account-login label,
.smash-theme #account-register label,
.smash-theme #account-login p,
.smash-theme #account-register p {
  color: var(--smash-light) !important;
}

.smash-theme #account-login .form-control,
.smash-theme #account-register .form-control {
  background-color: var(--smash-gray-700) !important;
  border-color: var(--smash-gray-600) !important;
  color: var(--smash-light) !important;
}

/* Fieldset and legend */
.smash-theme fieldset {
  border: 1px solid var(--smash-gray-700) !important;
  background-color: var(--smash-gray-800) !important;
  padding: 1rem !important;
  margin-bottom: 1rem !important;
}

.smash-theme legend {
  color: var(--smash-secondary) !important;
  font-size: 1.1rem !important;
  font-weight: var(--smash-font-semibold) !important;
  padding: 0 0.5rem !important;
  width: auto !important;
}

/* Alert messages in checkout */
.smash-theme .alert {
  border-radius: var(--smash-radius-md);
}

.smash-theme .alert-danger {
  background-color: rgba(252, 129, 129, 0.1);
  border-color: var(--smash-danger);
  color: var(--smash-danger);
}

.smash-theme .alert-success {
  background-color: rgba(72, 187, 120, 0.1);
  border-color: var(--smash-success);
  color: var(--smash-success);
}

.smash-theme .alert-warning {
  background-color: rgba(236, 201, 75, 0.1);
  border-color: var(--smash-warning);
  color: var(--smash-warning);
}

.smash-theme .alert-info {
  background-color: rgba(66, 153, 225, 0.1);
  border-color: var(--smash-info);
  color: var(--smash-info);
}

/* ==========================================================================
   Contact & Information Pages
   ========================================================================== */

/* Contact page form labels */
.smash-theme #information-contact label,
.smash-theme .contact-form label,
.smash-theme #content label {
  color: var(--smash-light) !important;
}

/* Contact page form inputs */
.smash-theme #information-contact .form-control,
.smash-theme #information-contact textarea,
.smash-theme #information-contact input {
  background-color: var(--smash-gray-700) !important;
  border-color: var(--smash-gray-600) !important;
  color: var(--smash-light) !important;
}

/* Information pages (About, Terms, Privacy, etc.) */
.smash-theme #information-information h1,
.smash-theme #information-information h2,
.smash-theme #information-information h3 {
  color: var(--smash-light) !important;
}

.smash-theme #information-information p,
.smash-theme #information-information li,
.smash-theme #information-information span,
.smash-theme #information-information div {
  color: var(--smash-gray-300) !important;
}

/* Search page */
.smash-theme #product-search label,
.smash-theme #product-search p {
  color: var(--smash-light) !important;
}

.smash-theme #product-search .form-control {
  background-color: var(--smash-gray-700) !important;
  border-color: var(--smash-gray-600) !important;
  color: var(--smash-light) !important;
}

/* Compare page */
.smash-theme #product-compare .table td,
.smash-theme #product-compare .table th {
  background-color: var(--smash-gray-800) !important;
  color: var(--smash-light) !important;
  border-color: var(--smash-gray-700) !important;
}

/* Sitemap page */
.smash-theme #information-sitemap a {
  color: var(--smash-primary) !important;
}

.smash-theme #information-sitemap h2 {
  color: var(--smash-light) !important;
}

/* Generic form styling across all pages */
.smash-theme label,
.smash-theme .form-label {
  color: var(--smash-light) !important;
}

.smash-theme .form-control,
.smash-theme .form-select,
.smash-theme input[type="text"],
.smash-theme input[type="email"],
.smash-theme input[type="tel"],
.smash-theme input[type="password"],
.smash-theme input[type="search"],
.smash-theme textarea,
.smash-theme select {
  background-color: var(--smash-gray-700) !important;
  border: 1px solid var(--smash-gray-600) !important;
  color: var(--smash-light) !important;
}

.smash-theme .form-control:focus,
.smash-theme .form-select:focus,
.smash-theme input:focus,
.smash-theme textarea:focus {
  background-color: var(--smash-gray-700) !important;
  border-color: var(--smash-secondary) !important;
  box-shadow: 0 0 0 0.2rem rgba(201, 165, 92, 0.25) !important;
  color: var(--smash-light) !important;
}

.smash-theme .form-control::placeholder,
.smash-theme input::placeholder,
.smash-theme textarea::placeholder {
  color: var(--smash-gray-500) !important;
}

/* Breadcrumb text color */
.smash-theme .breadcrumb-item,
.smash-theme .breadcrumb-item a {
  color: var(--smash-gray-400) !important;
}

.smash-theme .breadcrumb-item.active {
  color: var(--smash-light) !important;
}

/* ==========================================================================
   Smash One-Page Checkout - Enhanced Styling
   ========================================================================== */

/* Main checkout container */
.smash-theme .smash-checkout {
  padding: 2rem 0;
  color: var(--smash-light);
}

.smash-theme .smash-checkout-title {
  color: var(--smash-light) !important;
  font-weight: var(--smash-font-bold);
  margin-bottom: 2rem;
}

/* Checkout sections */
.smash-theme .smash-checkout-section {
  background: var(--smash-gray-800);
  border-radius: var(--smash-radius-lg);
  border: 1px solid var(--smash-gray-700);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.smash-theme .smash-checkout-section-header {
  background: var(--smash-gray-700);
  border-bottom: 1px solid var(--smash-gray-600);
  padding: 1rem 1.5rem;
}

.smash-theme .smash-checkout-section-header h2 {
  color: var(--smash-light) !important;
  font-size: 1.1rem;
  font-weight: var(--smash-font-semibold);
  margin: 0;
}

.smash-theme .smash-checkout-step {
  background: var(--smash-secondary);
  color: var(--smash-dark);
  font-weight: var(--smash-font-bold);
}

.smash-theme .smash-checkout-section-body {
  padding: 1.5rem;
  color: var(--smash-light);
}

.smash-theme .smash-checkout-section-body label,
.smash-theme .smash-checkout-section-body .form-label {
  color: var(--smash-light) !important;
}

.smash-theme .smash-checkout-section-body p,
.smash-theme .smash-checkout-section-body span {
  color: var(--smash-light);
}

/* Customer tabs */
.smash-theme .smash-checkout-tabs .nav-pills .nav-link {
  background: var(--smash-gray-700);
  color: var(--smash-gray-300);
  border: 1px solid var(--smash-gray-600);
  border-radius: var(--smash-radius-md);
  padding: 0.75rem 1.5rem;
  margin-right: 0.5rem;
  transition: var(--smash-transition-fast);
}

.smash-theme .smash-checkout-tabs .nav-pills .nav-link:hover {
  background: var(--smash-gray-600);
  color: var(--smash-light);
}

.smash-theme .smash-checkout-tabs .nav-pills .nav-link.active {
  background: var(--smash-secondary);
  color: var(--smash-dark);
  border-color: var(--smash-secondary);
}

/* Logged user info */
.smash-theme .smash-checkout-logged-user {
  background: var(--smash-gray-700);
  border-radius: var(--smash-radius-md);
  padding: 1rem 1.25rem;
  color: var(--smash-light) !important;
}

.smash-theme .smash-checkout-logged-user p {
  color: var(--smash-light) !important;
}

.smash-theme .smash-checkout-logged-user .text-muted {
  color: var(--smash-gray-400) !important;
}

/* Form inputs in checkout */
.smash-theme .smash-checkout .form-control,
.smash-theme .smash-checkout .form-select {
  background-color: var(--smash-gray-700) !important;
  border: 1px solid var(--smash-gray-600) !important;
  color: var(--smash-light) !important;
  border-radius: var(--smash-radius-md);
  padding: 0.75rem 1rem;
  transition: var(--smash-transition-fast);
}

.smash-theme .smash-checkout .form-control:focus,
.smash-theme .smash-checkout .form-select:focus {
  background-color: var(--smash-gray-700) !important;
  border-color: var(--smash-secondary) !important;
  box-shadow: 0 0 0 3px rgba(201, 165, 92, 0.15) !important;
}

.smash-theme .smash-checkout .form-control::placeholder {
  color: var(--smash-gray-500) !important;
}

/* Checkbox and radio styling */
.smash-theme .smash-checkout .form-check-input {
  background-color: var(--smash-gray-700);
  border: 2px solid var(--smash-gray-500);
  width: 1.25rem;
  height: 1.25rem;
}

.smash-theme .smash-checkout .form-check-input:checked {
  background-color: var(--smash-secondary);
  border-color: var(--smash-secondary);
}

.smash-theme .smash-checkout .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(201, 165, 92, 0.2);
}

.smash-theme .smash-checkout .form-check-label {
  color: var(--smash-light) !important;
  padding-left: 0.25rem;
}

/* Shipping/payment method groups */
.smash-theme .smash-checkout-method-group h6 {
  color: var(--smash-secondary) !important;
  font-weight: var(--smash-font-semibold);
  margin-bottom: 0.75rem;
}

.smash-theme .smash-checkout-method-group .form-check {
  background: var(--smash-gray-700);
  border-radius: var(--smash-radius-md);
  padding: 1rem;
  margin-bottom: 0.5rem;
  transition: var(--smash-transition-fast);
}

.smash-theme .smash-checkout-method-group .form-check:hover {
  background: var(--smash-gray-600);
}

.smash-theme .smash-checkout-method-group .form-check-label {
  width: 100%;
  cursor: pointer;
}

/* Order Summary */
.smash-theme .smash-checkout-summary {
  background: var(--smash-gray-800);
  border: 1px solid var(--smash-gray-700);
  border-radius: var(--smash-radius-lg);
  padding: 1.5rem;
  color: var(--smash-light);
}

.smash-theme .smash-checkout-summary-title {
  color: var(--smash-light) !important;
  font-weight: var(--smash-font-bold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--smash-gray-700);
}

/* Products list */
.smash-theme .smash-checkout-product {
  border-bottom: 1px solid var(--smash-gray-700);
  padding: 0.75rem 0;
}

.smash-theme .smash-checkout-product-qty {
  color: var(--smash-secondary);
  font-weight: var(--smash-font-semibold);
}

.smash-theme .smash-checkout-product-name {
  color: var(--smash-light) !important;
  text-decoration: none;
  transition: var(--smash-transition-fast);
}

.smash-theme .smash-checkout-product-name:hover {
  color: var(--smash-secondary) !important;
}

.smash-theme .smash-checkout-product-options small {
  color: var(--smash-gray-400) !important;
}

.smash-theme .smash-checkout-product-price {
  color: var(--smash-light);
  font-weight: var(--smash-font-semibold);
}

/* Discounts section */
.smash-theme .smash-checkout-discounts {
  border-top: 1px solid var(--smash-gray-700);
  padding: 1rem 0;
}

.smash-theme .smash-checkout-discounts .input-group .form-control {
  border-radius: var(--smash-radius-md) 0 0 var(--smash-radius-md) !important;
}

.smash-theme .smash-checkout-discounts .btn-outline-primary {
  background: transparent;
  border: 1px solid var(--smash-secondary);
  color: var(--smash-secondary);
  border-radius: 0 var(--smash-radius-md) var(--smash-radius-md) 0;
  transition: var(--smash-transition-fast);
}

.smash-theme .smash-checkout-discounts .btn-outline-primary:hover {
  background: var(--smash-secondary);
  color: var(--smash-dark);
}

/* Totals */
.smash-theme .smash-checkout-totals {
  border-top: 1px solid var(--smash-gray-700);
  padding-top: 1rem;
}

.smash-theme .smash-checkout-total-row {
  color: var(--smash-light);
}

.smash-theme .smash-checkout-total-title {
  color: var(--smash-gray-300);
}

.smash-theme .smash-checkout-total-value {
  color: var(--smash-light);
  font-weight: var(--smash-font-medium);
}

.smash-theme .smash-checkout-total-grand {
  border-top: 2px solid var(--smash-secondary);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

.smash-theme .smash-checkout-total-grand .smash-checkout-total-title,
.smash-theme .smash-checkout-total-grand .smash-checkout-total-value {
  color: var(--smash-light) !important;
  font-size: 1.25rem;
  font-weight: var(--smash-font-bold);
}

/* Agreement */
.smash-theme .smash-checkout-agree {
  border-top: 1px solid var(--smash-gray-700);
  padding: 1rem 0;
}

.smash-theme .smash-checkout-agree a {
  color: var(--smash-secondary) !important;
}

/* Confirm button */
.smash-theme .smash-checkout-confirm {
  padding-top: 1rem;
}

.smash-theme .smash-checkout-confirm .btn-primary {
  background: linear-gradient(135deg, var(--smash-secondary) 0%, var(--smash-secondary-dark) 100%);
  border: none;
  color: var(--smash-dark);
  font-weight: var(--smash-font-bold);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: var(--smash-radius-md);
  transition: var(--smash-transition-fast);
  box-shadow: 0 4px 15px rgba(201, 165, 92, 0.3);
}

.smash-theme .smash-checkout-confirm .btn-primary:hover {
  background: linear-gradient(135deg, var(--smash-secondary-light) 0%, var(--smash-secondary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 165, 92, 0.4);
}

.smash-theme .smash-checkout-confirm .btn-primary:disabled {
  opacity: 0.7;
  transform: none;
}

/* Alerts in checkout */
.smash-theme .smash-checkout .alert-warning {
  background: rgba(236, 201, 75, 0.15);
  border: 1px solid var(--smash-warning);
  color: var(--smash-warning);
  border-radius: var(--smash-radius-md);
}

.smash-theme .smash-checkout .alert-danger {
  background: rgba(252, 129, 129, 0.15);
  border: 1px solid var(--smash-danger);
  color: var(--smash-danger);
  border-radius: var(--smash-radius-md);
}

.smash-theme .smash-checkout .alert-success {
  background: rgba(72, 187, 120, 0.15);
  border: 1px solid var(--smash-success);
  color: var(--smash-success);
  border-radius: var(--smash-radius-md);
}

/* Loading spinner */
.smash-theme .smash-checkout .fa-spinner {
  color: var(--smash-secondary);
}

/* Text muted override */
.smash-theme .smash-checkout .text-muted {
  color: var(--smash-gray-400) !important;
}

/* Text danger for required */
.smash-theme .smash-checkout .text-danger {
  color: var(--smash-danger) !important;
}

/* Login form specific */
.smash-theme .smash-checkout #smash-login-form .btn-primary {
  background: var(--smash-secondary);
  border: none;
  color: var(--smash-dark);
  font-weight: var(--smash-font-semibold);
  padding: 0.75rem 1.5rem;
  border-radius: var(--smash-radius-md);
  transition: var(--smash-transition-fast);
}

.smash-theme .smash-checkout #smash-login-form .btn-primary:hover {
  background: var(--smash-secondary-light);
}

.smash-theme .smash-checkout #smash-login-form a.text-muted {
  color: var(--smash-gray-400) !important;
  transition: var(--smash-transition-fast);
}

.smash-theme .smash-checkout #smash-login-form a.text-muted:hover {
  color: var(--smash-secondary) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .smash-theme .smash-checkout-summary-col {
    margin-top: 2rem;
  }

  .smash-theme .smash-checkout-summary {
    position: static !important;
  }
}

/* ==========================================================================
   CMS / Blog Styles
   ========================================================================== */

/* Blog Container */
.smash-theme #product-category.container {
  padding-top: var(--smash-space-xl);
  padding-bottom: var(--smash-space-3xl);
}

/* Blog Main Content Area */
.smash-theme #product-category #content {
  background: var(--smash-gray-800);
  border-radius: var(--smash-radius-lg);
  padding: var(--smash-space-xl);
}

/* Blog Heading */
.smash-theme #product-category h1 {
  color: var(--smash-white);
  font-weight: var(--smash-font-bold);
  margin-bottom: var(--smash-space-lg);
  font-size: 2rem;
}

/* Topic Description */
.smash-theme #product-category #content > .mb-3:first-of-type {
  color: var(--smash-gray-300);
  line-height: 1.7;
}

/* Blog Refine Section */
.smash-theme #product-category h3 {
  color: var(--smash-light);
  font-size: 1.1rem;
  font-weight: var(--smash-font-semibold);
  margin-bottom: var(--smash-space-sm);
}

/* Blog Search Input Group */
.smash-theme #product-category .input-group.dropdown {
  background: var(--smash-gray-700);
  border-radius: var(--smash-radius-md);
  overflow: hidden;
}

.smash-theme #product-category .input-group.dropdown .form-control,
.smash-theme #product-category .input-group.dropdown .form-select {
  background: var(--smash-gray-700);
  border: none;
  color: var(--smash-light);
  padding: 0.75rem 1rem;
}

.smash-theme #product-category .input-group.dropdown .form-control::placeholder {
  color: var(--smash-gray-500);
}

.smash-theme #product-category .input-group.dropdown .form-select option {
  background: var(--smash-gray-800);
  color: var(--smash-light);
}

.smash-theme #product-category .input-group.dropdown .btn-primary {
  background: var(--smash-primary);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: var(--smash-font-semibold);
}

.smash-theme #product-category .input-group.dropdown .btn-primary:hover {
  background: var(--smash-primary-light);
}

/* Blog Sort Dropdown */
.smash-theme #product-category .input-group .input-group-text {
  background: var(--smash-gray-700);
  border: 1px solid var(--smash-gray-600);
  color: var(--smash-gray-300);
}

.smash-theme #product-category .input-group #input-sort {
  background: var(--smash-gray-700);
  border: 1px solid var(--smash-gray-600);
  color: var(--smash-light);
}

.smash-theme #product-category .input-group #input-sort option {
  background: var(--smash-gray-800);
}

/* Blog Article Cards */
.smash-theme #product-category #content > .mb-3 {
  background: var(--smash-gray-900);
  border-radius: var(--smash-radius-lg);
  padding: var(--smash-space-lg);
  margin-bottom: var(--smash-space-lg) !important;
  border: 1px solid var(--smash-gray-700);
  transition: var(--smash-transition-normal);
}

.smash-theme #product-category #content > .mb-3:hover {
  border-color: var(--smash-primary);
  transform: translateY(-2px);
  box-shadow: var(--smash-shadow-lg);
}

/* Article Title */
.smash-theme #product-category #content > .mb-3 h2 {
  margin-bottom: var(--smash-space-md);
}

.smash-theme #product-category #content > .mb-3 h2 a {
  color: var(--smash-white);
  font-weight: var(--smash-font-bold);
  font-size: 1.35rem;
  text-decoration: none;
  transition: var(--smash-transition-fast);
}

.smash-theme #product-category #content > .mb-3 h2 a:hover {
  color: var(--smash-primary-light);
}

/* Article Image */
.smash-theme #product-category #content > .mb-3 .img-thumbnail {
  background: var(--smash-gray-700);
  border: 1px solid var(--smash-gray-600);
  border-radius: var(--smash-radius-md);
  max-width: 300px;
}

/* Article Meta Info */
.smash-theme #product-category #content > .mb-3 .list-inline {
  margin-bottom: var(--smash-space-md);
}

.smash-theme #product-category #content > .mb-3 .list-inline-item {
  color: var(--smash-gray-400);
  font-size: 0.9rem;
}

.smash-theme #product-category #content > .mb-3 .list-inline-item a {
  color: var(--smash-primary);
  text-decoration: none;
}

.smash-theme #product-category #content > .mb-3 .list-inline-item a:hover {
  color: var(--smash-primary-light);
  text-decoration: underline;
}

/* Article Description/Excerpt */
.smash-theme #product-category #content > .mb-3 p {
  color: var(--smash-gray-300);
  line-height: 1.7;
  margin-bottom: var(--smash-space-md);
}

/* Article Continue Button */
.smash-theme #product-category #content > .mb-3 .btn-primary {
  background: var(--smash-secondary);
  border: none;
  color: var(--smash-dark);
  font-weight: var(--smash-font-semibold);
  padding: 0.5rem 1.25rem;
  border-radius: var(--smash-radius-md);
  transition: var(--smash-transition-fast);
}

.smash-theme #product-category #content > .mb-3 .btn-primary:hover {
  background: var(--smash-secondary-light);
  transform: translateX(3px);
}

/* Pagination */
.smash-theme #product-category .pagination {
  margin-top: var(--smash-space-lg);
}

.smash-theme #product-category .pagination .page-link {
  background: var(--smash-gray-700);
  border-color: var(--smash-gray-600);
  color: var(--smash-light);
}

.smash-theme #product-category .pagination .page-link:hover {
  background: var(--smash-gray-600);
  border-color: var(--smash-gray-500);
  color: var(--smash-white);
}

.smash-theme #product-category .pagination .page-item.active .page-link {
  background: var(--smash-primary);
  border-color: var(--smash-primary);
  color: var(--smash-white);
}

/* Results Text */
.smash-theme #product-category .text-end {
  color: var(--smash-gray-400);
  font-size: 0.9rem;
}

/* No Results Message */
.smash-theme #product-category .text-center {
  color: var(--smash-gray-400);
  padding: var(--smash-space-xl);
}

/* ==========================================================================
   Blog Article Detail Page
   ========================================================================== */

/* Article Info Container */
.smash-theme #product-info,
.smash-theme #information-information,
.smash-theme [id*="cms-"] {
  padding-top: var(--smash-space-xl);
  padding-bottom: var(--smash-space-3xl);
}

.smash-theme #product-info #content,
.smash-theme #information-information #content,
.smash-theme [id*="cms-"] #content {
  background: var(--smash-gray-800);
  border-radius: var(--smash-radius-lg);
  padding: var(--smash-space-xl);
}

/* Article Detail Heading */
.smash-theme #product-info h1,
.smash-theme #information-information h1,
.smash-theme [id*="cms-"] h1 {
  color: var(--smash-white);
  font-weight: var(--smash-font-bold);
  font-size: 2rem;
  margin-bottom: var(--smash-space-lg);
  line-height: 1.3;
}

/* Article Content Paragraphs */
.smash-theme #product-info p,
.smash-theme #information-information p,
.smash-theme [id*="cms-"] p {
  color: var(--smash-gray-200);
  line-height: 1.8;
  margin-bottom: var(--smash-space-md);
}

/* Article Content Headings */
.smash-theme #product-info h2,
.smash-theme #information-information h2,
.smash-theme [id*="cms-"] h2 {
  color: var(--smash-white);
  font-weight: var(--smash-font-bold);
  font-size: 1.5rem;
  margin-top: var(--smash-space-xl);
  margin-bottom: var(--smash-space-md);
}

.smash-theme #product-info h3,
.smash-theme #information-information h3,
.smash-theme [id*="cms-"] h3 {
  color: var(--smash-white);
  font-weight: var(--smash-font-semibold);
  font-size: 1.25rem;
  margin-top: var(--smash-space-lg);
  margin-bottom: var(--smash-space-sm);
}

/* Article Content Lists */
.smash-theme #product-info ul,
.smash-theme #product-info ol,
.smash-theme #information-information ul,
.smash-theme #information-information ol,
.smash-theme [id*="cms-"] ul,
.smash-theme [id*="cms-"] ol {
  color: var(--smash-gray-200);
  margin-bottom: var(--smash-space-md);
  padding-left: var(--smash-space-lg);
}

.smash-theme #product-info li,
.smash-theme #information-information li,
.smash-theme [id*="cms-"] li {
  margin-bottom: var(--smash-space-sm);
  line-height: 1.7;
}

/* Article Links */
.smash-theme #product-info a,
.smash-theme #information-information a,
.smash-theme [id*="cms-"] #content a {
  color: var(--smash-primary);
  text-decoration: none;
  transition: var(--smash-transition-fast);
}

.smash-theme #product-info a:hover,
.smash-theme #information-information a:hover,
.smash-theme [id*="cms-"] #content a:hover {
  color: var(--smash-primary-light);
  text-decoration: underline;
}

/* Article Code Blocks */
.smash-theme #product-info code,
.smash-theme #information-information code,
.smash-theme [id*="cms-"] code {
  background: var(--smash-gray-900);
  color: var(--smash-secondary);
  padding: 0.125rem 0.375rem;
  border-radius: var(--smash-radius-sm);
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 0.9em;
}

.smash-theme #product-info pre,
.smash-theme #information-information pre,
.smash-theme [id*="cms-"] pre {
  background: var(--smash-gray-900);
  border: 1px solid var(--smash-gray-700);
  border-radius: var(--smash-radius-md);
  padding: var(--smash-space-md);
  overflow-x: auto;
  margin-bottom: var(--smash-space-md);
}

.smash-theme #product-info pre code,
.smash-theme #information-information pre code,
.smash-theme [id*="cms-"] pre code {
  background: transparent;
  padding: 0;
}

/* Article Blockquotes */
.smash-theme #product-info blockquote,
.smash-theme #information-information blockquote,
.smash-theme [id*="cms-"] blockquote {
  border-left: 4px solid var(--smash-primary);
  background: var(--smash-gray-900);
  padding: var(--smash-space-md) var(--smash-space-lg);
  margin: var(--smash-space-lg) 0;
  border-radius: 0 var(--smash-radius-md) var(--smash-radius-md) 0;
  color: var(--smash-gray-300);
  font-style: italic;
}

/* Article Tables */
.smash-theme #product-info table,
.smash-theme #information-information table,
.smash-theme [id*="cms-"] table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--smash-space-lg);
}

.smash-theme #product-info th,
.smash-theme #information-information th,
.smash-theme [id*="cms-"] th {
  background: var(--smash-gray-700);
  color: var(--smash-white);
  font-weight: var(--smash-font-semibold);
  padding: 0.75rem;
  text-align: left;
  border: 1px solid var(--smash-gray-600);
}

.smash-theme #product-info td,
.smash-theme #information-information td,
.smash-theme [id*="cms-"] td {
  background: var(--smash-gray-800);
  color: var(--smash-gray-200);
  padding: 0.75rem;
  border: 1px solid var(--smash-gray-700);
}

.smash-theme #product-info tr:nth-child(even) td,
.smash-theme #information-information tr:nth-child(even) td,
.smash-theme [id*="cms-"] tr:nth-child(even) td {
  background: var(--smash-gray-900);
}

/* Article Images */
.smash-theme #product-info img,
.smash-theme #information-information img,
.smash-theme [id*="cms-"] #content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--smash-radius-md);
  margin: var(--smash-space-md) 0;
}

/* ==========================================================================
   Blog Comments Section
   ========================================================================== */

/* Comments Container */
.smash-theme .list-group.list-group-flush {
  background: transparent;
}

.smash-theme .list-group-item {
  background: var(--smash-gray-900);
  border-color: var(--smash-gray-700);
  color: var(--smash-gray-200);
  padding: var(--smash-space-md);
}

.smash-theme .list-group-item + .list-group-item {
  border-top-width: 1px;
}

/* Comment Author */
.smash-theme .list-group-item strong {
  color: var(--smash-white);
}

/* Comment Text */
.smash-theme .list-group-item small {
  color: var(--smash-gray-400);
}

/* Comment Form */
.smash-theme #form-comment .form-control,
.smash-theme #form-comment .form-select {
  background: var(--smash-gray-700);
  border: 1px solid var(--smash-gray-600);
  color: var(--smash-light);
}

.smash-theme #form-comment .form-control::placeholder {
  color: var(--smash-gray-500);
}

.smash-theme #form-comment .form-control:focus {
  background: var(--smash-gray-700);
  border-color: var(--smash-primary);
  box-shadow: 0 0 0 0.2rem rgba(66, 153, 225, 0.25);
  color: var(--smash-light);
}

.smash-theme #form-comment .btn-primary {
  background: var(--smash-primary);
  border: none;
}

.smash-theme #form-comment .btn-primary:hover {
  background: var(--smash-primary-light);
}

/* Article Rating */
.smash-theme .rating {
  display: flex;
  gap: 0.25rem;
}

.smash-theme .rating .fa-star {
  color: var(--smash-gray-600);
}

.smash-theme .rating .fa-star.active,
.smash-theme .rating .fa-star.text-warning {
  color: var(--smash-warning);
}

/* ==========================================================================
   CMS Information Pages
   ========================================================================== */

/* Information Page Styling */
.smash-theme #information-information #content {
  color: var(--smash-gray-200);
}

.smash-theme #information-information #content .table {
  background: transparent;
}

.smash-theme #information-information #content .table th {
  background: var(--smash-gray-700);
  color: var(--smash-white);
  border-color: var(--smash-gray-600);
}

.smash-theme #information-information #content .table td {
  background: var(--smash-gray-800);
  color: var(--smash-gray-200);
  border-color: var(--smash-gray-700);
}

/* Strong/Bold Text in Content */
.smash-theme #product-info strong,
.smash-theme #information-information strong,
.smash-theme [id*="cms-"] strong {
  color: var(--smash-white);
  font-weight: var(--smash-font-semibold);
}

/* Horizontal Rules */
.smash-theme #product-info hr,
.smash-theme #information-information hr,
.smash-theme [id*="cms-"] hr,
.smash-theme #product-category hr {
  border-color: var(--smash-gray-700);
  opacity: 0.5;
  margin: var(--smash-space-lg) 0;
}

/* ==========================================================================
   Smash Blog - Custom Templates
   ========================================================================== */

/* Blog Container */
.smash-theme .smash-blog-container {
  padding-top: var(--smash-space-xl);
  padding-bottom: var(--smash-space-3xl);
}

.smash-theme .smash-blog-container #content {
  background: var(--smash-gray-800);
  border-radius: var(--smash-radius-lg);
  padding: var(--smash-space-xl);
}

/* Blog Header */
.smash-theme .smash-blog-header h1 {
  color: var(--smash-white);
  font-weight: var(--smash-font-bold);
  font-size: 2.25rem;
  margin-bottom: var(--smash-space-md);
}

.smash-theme .smash-topic-image {
  border-radius: var(--smash-radius-lg);
  margin-bottom: var(--smash-space-md);
  max-width: 100%;
}

.smash-theme .smash-topic-description {
  color: var(--smash-gray-300);
  line-height: 1.7;
  font-size: 1.05rem;
}

.smash-theme .smash-divider {
  border-color: var(--smash-gray-700);
  margin: var(--smash-space-xl) 0;
}

/* Blog Filters */
.smash-theme .smash-blog-filters {
  margin-bottom: var(--smash-space-lg);
}

.smash-theme .smash-blog-filters h3 {
  color: var(--smash-light);
  font-size: 1rem;
  font-weight: var(--smash-font-semibold);
  margin-bottom: var(--smash-space-sm);
}

.smash-theme .smash-blog-filters h3 i {
  margin-right: 0.5rem;
  color: var(--smash-primary);
}

.smash-theme .smash-search-group {
  background: var(--smash-gray-700);
  border-radius: var(--smash-radius-md);
  overflow: hidden;
}

.smash-theme .smash-search-group .form-control,
.smash-theme .smash-search-group .form-select {
  background: var(--smash-gray-700);
  border: none;
  color: var(--smash-light);
  padding: 0.875rem 1rem;
}

.smash-theme .smash-search-group .form-control:focus,
.smash-theme .smash-search-group .form-select:focus {
  background: var(--smash-gray-600);
  box-shadow: none;
  color: var(--smash-white);
}

.smash-theme .smash-search-group .form-control::placeholder {
  color: var(--smash-gray-500);
}

.smash-theme .smash-search-group .form-select option {
  background: var(--smash-gray-800);
  color: var(--smash-light);
}

.smash-theme .smash-search-group .btn-primary {
  background: var(--smash-primary);
  border: none;
  padding: 0.875rem 1.5rem;
  font-weight: var(--smash-font-semibold);
}

.smash-theme .smash-search-group .btn-primary:hover {
  background: var(--smash-primary-light);
}

/* Blog Sort */
.smash-theme .smash-blog-sort {
  margin-bottom: var(--smash-space-xl);
}

.smash-theme .smash-blog-sort .input-group {
  max-width: 350px;
  margin-left: auto;
}

.smash-theme .smash-blog-sort .input-group-text {
  background: var(--smash-gray-700);
  border: 1px solid var(--smash-gray-600);
  color: var(--smash-gray-300);
}

.smash-theme .smash-blog-sort .input-group-text i {
  margin-right: 0.5rem;
}

.smash-theme .smash-blog-sort .form-select {
  background: var(--smash-gray-700);
  border: 1px solid var(--smash-gray-600);
  color: var(--smash-light);
}

.smash-theme .smash-blog-sort .form-select option {
  background: var(--smash-gray-800);
}

/* Articles List */
.smash-theme .smash-articles-list {
  display: flex;
  flex-direction: column;
  gap: var(--smash-space-lg);
}

/* Article Card */
.smash-theme .smash-article-card {
  background: var(--smash-gray-900);
  border-radius: var(--smash-radius-lg);
  border: 1px solid var(--smash-gray-700);
  overflow: hidden;
  transition: var(--smash-transition-normal);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .smash-theme .smash-article-card {
    flex-direction: row;
  }
}

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

.smash-theme .smash-article-image {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .smash-theme .smash-article-image {
    width: 280px;
  }
}

.smash-theme .smash-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--smash-transition-normal);
}

.smash-theme .smash-article-card:hover .smash-article-image img {
  transform: scale(1.05);
}

.smash-theme .smash-article-content {
  padding: var(--smash-space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.smash-theme .smash-article-title {
  margin-bottom: var(--smash-space-sm);
}

.smash-theme .smash-article-title a {
  color: var(--smash-white);
  font-weight: var(--smash-font-bold);
  font-size: 1.35rem;
  text-decoration: none;
  transition: var(--smash-transition-fast);
  display: block;
}

.smash-theme .smash-article-title a:hover {
  color: var(--smash-primary-light);
}

.smash-theme .smash-article-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--smash-space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--smash-space-md);
}

.smash-theme .smash-article-meta li {
  color: var(--smash-gray-400);
  font-size: 0.875rem;
}

.smash-theme .smash-article-meta li i {
  margin-right: 0.375rem;
  color: var(--smash-gray-500);
}

.smash-theme .smash-article-meta li a {
  color: var(--smash-primary);
  text-decoration: none;
}

.smash-theme .smash-article-meta li a:hover {
  color: var(--smash-primary-light);
  text-decoration: underline;
}

.smash-theme .smash-article-excerpt {
  color: var(--smash-gray-300);
  line-height: 1.7;
  margin-bottom: var(--smash-space-md);
  flex: 1;
}

.smash-theme .smash-btn-read-more {
  background: var(--smash-secondary);
  border: none;
  color: var(--smash-dark);
  font-weight: var(--smash-font-semibold);
  padding: 0.625rem 1.25rem;
  border-radius: var(--smash-radius-md);
  transition: var(--smash-transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
}

.smash-theme .smash-btn-read-more:hover {
  background: var(--smash-secondary-light);
  color: var(--smash-dark);
  transform: translateX(4px);
}

.smash-theme .smash-btn-read-more i {
  transition: var(--smash-transition-fast);
}

.smash-theme .smash-btn-read-more:hover i {
  transform: translateX(3px);
}

/* Pagination */
.smash-theme .smash-blog-pagination {
  margin-top: var(--smash-space-xl);
  padding-top: var(--smash-space-lg);
  border-top: 1px solid var(--smash-gray-700);
}

.smash-theme .smash-blog-pagination .pagination .page-link {
  background: var(--smash-gray-700);
  border-color: var(--smash-gray-600);
  color: var(--smash-light);
}

.smash-theme .smash-blog-pagination .pagination .page-link:hover {
  background: var(--smash-gray-600);
  color: var(--smash-white);
}

.smash-theme .smash-blog-pagination .pagination .page-item.active .page-link {
  background: var(--smash-primary);
  border-color: var(--smash-primary);
}

.smash-theme .smash-results {
  color: var(--smash-gray-400);
  font-size: 0.9rem;
  line-height: 2.5;
}

/* No Results */
.smash-theme .smash-no-results {
  text-align: center;
  padding: var(--smash-space-3xl) var(--smash-space-xl);
  color: var(--smash-gray-400);
}

.smash-theme .smash-no-results i {
  font-size: 4rem;
  margin-bottom: var(--smash-space-md);
  opacity: 0.5;
}

.smash-theme .smash-no-results p {
  font-size: 1.1rem;
}

/* ==========================================================================
   Smash Blog Info - Article Detail Page
   ========================================================================== */

/* Article Full */
.smash-theme .smash-article-full {
  max-width: 900px;
  margin: 0 auto;
}

.smash-theme .smash-article-header {
  margin-bottom: var(--smash-space-xl);
}

.smash-theme .smash-article-header h1 {
  color: var(--smash-white);
  font-weight: var(--smash-font-bold);
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: var(--smash-space-md);
}

.smash-theme .smash-article-featured-image {
  margin-bottom: var(--smash-space-xl);
  border-radius: var(--smash-radius-lg);
  overflow: hidden;
}

.smash-theme .smash-article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article Body */
.smash-theme .smash-article-body {
  color: var(--smash-gray-200);
  font-size: 1.05rem;
  line-height: 1.85;
}

.smash-theme .smash-article-body h2 {
  color: var(--smash-white);
  font-weight: var(--smash-font-bold);
  font-size: 1.6rem;
  margin-top: var(--smash-space-2xl);
  margin-bottom: var(--smash-space-md);
  padding-bottom: var(--smash-space-sm);
  border-bottom: 2px solid var(--smash-primary);
}

.smash-theme .smash-article-body h3 {
  color: var(--smash-white);
  font-weight: var(--smash-font-semibold);
  font-size: 1.3rem;
  margin-top: var(--smash-space-xl);
  margin-bottom: var(--smash-space-sm);
}

.smash-theme .smash-article-body h4 {
  color: var(--smash-white);
  font-weight: var(--smash-font-semibold);
  font-size: 1.1rem;
  margin-top: var(--smash-space-lg);
  margin-bottom: var(--smash-space-sm);
}

.smash-theme .smash-article-body p {
  margin-bottom: var(--smash-space-md);
}

.smash-theme .smash-article-body a {
  color: var(--smash-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--smash-transition-fast);
}

.smash-theme .smash-article-body a:hover {
  color: var(--smash-primary-light);
  border-bottom-color: var(--smash-primary-light);
}

.smash-theme .smash-article-body ul,
.smash-theme .smash-article-body ol {
  margin-bottom: var(--smash-space-lg);
  padding-left: var(--smash-space-xl);
}

.smash-theme .smash-article-body li {
  margin-bottom: var(--smash-space-sm);
}

.smash-theme .smash-article-body strong {
  color: var(--smash-white);
  font-weight: var(--smash-font-semibold);
}

.smash-theme .smash-article-body code {
  background: var(--smash-gray-900);
  color: var(--smash-secondary);
  padding: 0.2rem 0.5rem;
  border-radius: var(--smash-radius-sm);
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 0.9em;
}

.smash-theme .smash-article-body pre {
  background: var(--smash-gray-900);
  border: 1px solid var(--smash-gray-700);
  border-radius: var(--smash-radius-md);
  padding: var(--smash-space-lg);
  overflow-x: auto;
  margin: var(--smash-space-lg) 0;
}

.smash-theme .smash-article-body pre code {
  background: transparent;
  padding: 0;
  color: var(--smash-gray-200);
}

.smash-theme .smash-article-body blockquote {
  border-left: 4px solid var(--smash-secondary);
  background: var(--smash-gray-900);
  padding: var(--smash-space-lg);
  margin: var(--smash-space-lg) 0;
  border-radius: 0 var(--smash-radius-md) var(--smash-radius-md) 0;
  font-style: italic;
  color: var(--smash-gray-300);
}

.smash-theme .smash-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--smash-radius-md);
  margin: var(--smash-space-lg) 0;
}

.smash-theme .smash-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--smash-space-lg) 0;
}

.smash-theme .smash-article-body th {
  background: var(--smash-gray-700);
  color: var(--smash-white);
  font-weight: var(--smash-font-semibold);
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--smash-gray-600);
}

.smash-theme .smash-article-body td {
  background: var(--smash-gray-800);
  color: var(--smash-gray-200);
  padding: 0.75rem 1rem;
  border: 1px solid var(--smash-gray-700);
}

.smash-theme .smash-article-body tr:nth-child(even) td {
  background: var(--smash-gray-900);
}

/* Article Tags */
.smash-theme .smash-article-tags {
  margin-top: var(--smash-space-xl);
  padding-top: var(--smash-space-lg);
  border-top: 1px solid var(--smash-gray-700);
}

.smash-theme .smash-tags-label {
  color: var(--smash-gray-400);
  margin-right: var(--smash-space-sm);
}

.smash-theme .smash-tags-label i {
  margin-right: 0.375rem;
}

.smash-theme .smash-tag {
  display: inline-block;
  background: var(--smash-gray-700);
  color: var(--smash-light);
  padding: 0.375rem 0.75rem;
  border-radius: var(--smash-radius-full);
  font-size: 0.875rem;
  text-decoration: none;
  margin: 0.25rem;
  transition: var(--smash-transition-fast);
}

.smash-theme .smash-tag:hover {
  background: var(--smash-primary);
  color: var(--smash-white);
}

/* Article Share */
.smash-theme .smash-article-share {
  margin-top: var(--smash-space-lg);
  padding: var(--smash-space-md);
  background: var(--smash-gray-900);
  border-radius: var(--smash-radius-md);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--smash-space-sm);
}

.smash-theme .smash-share-label {
  color: var(--smash-gray-400);
  margin-right: var(--smash-space-sm);
}

.smash-theme .smash-share-label i {
  margin-right: 0.375rem;
}

.smash-theme .smash-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--smash-radius-full);
  color: var(--smash-white);
  text-decoration: none;
  transition: var(--smash-transition-fast);
}

.smash-theme .smash-share-facebook {
  background: #1877f2;
}

.smash-theme .smash-share-twitter {
  background: #000000;
}

.smash-theme .smash-share-linkedin {
  background: #0a66c2;
}

.smash-theme .smash-share-email {
  background: var(--smash-gray-600);
}

.smash-theme .smash-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--smash-shadow-md);
  color: var(--smash-white);
}

/* Comments Section */
.smash-theme .smash-comments-section {
  margin-top: var(--smash-space-2xl);
  padding-top: var(--smash-space-xl);
  border-top: 2px solid var(--smash-gray-700);
}

.smash-theme .smash-comments-section h3 {
  color: var(--smash-white);
  font-weight: var(--smash-font-bold);
  margin-bottom: var(--smash-space-lg);
}

.smash-theme .smash-comments-section h3 i {
  margin-right: 0.5rem;
  color: var(--smash-primary);
}

/* ==========================================================================
   Extension Badges
   ========================================================================== */
.smash-extension-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: var(--smash-font-semibold);
  padding: 0.25rem 0.6rem;
  border-radius: var(--smash-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  margin-right: 0.5rem;
  color: var(--smash-white);
  background: var(--smash-primary);
}

/* Extension-specific badge colors */
.smash-badge-theme {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.smash-badge-checkout {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.smash-badge-seo {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.smash-badge-feeds {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.smash-badge-reviews {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  color: var(--smash-gray-800);
}

.smash-badge-wishlist {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: var(--smash-gray-800);
}

.smash-badge-analytics {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.smash-badge-import,
.smash-badge-importexport {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: var(--smash-gray-800);
}

/* Badge in article title */
.smash-article-title .smash-extension-badge {
  position: relative;
  top: -2px;
}

/* Badge in h1 */
h1 .smash-extension-badge {
  font-size: 0.5em;
  position: relative;
  top: -3px;
}
