/* Theme 11 - Modern Minimalist Theme */

/* CSS Variables - Applied to root */
:root {
  --theme-11-bg-light: #fafafa;
  --theme-11-border-color: #e8e8e8;
  --theme-11-text-dark: #1a1a1a;
  --theme-11-text-light: #666666;
  --theme-11-shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --theme-11-shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --theme-11-shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --theme-11-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --theme-11-transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --theme-11-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --theme-11-ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --theme-11-ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
}

/* CSS Variables for theme-11 class */
.theme-11 {
  --bg-light: var(--theme-11-bg-light, #fafafa);
  --border-color: var(--theme-11-border-color, #e8e8e8);
  --text-dark: var(--theme-11-text-dark, #1a1a1a);
  --text-light: var(--theme-11-text-light, #666666);
  --shadow-sm: var(--theme-11-shadow-sm, 0 2px 8px rgba(0,0,0,0.04));
  --shadow-md: var(--theme-11-shadow-md, 0 4px 16px rgba(0,0,0,0.08));
  --shadow-lg: var(--theme-11-shadow-lg, 0 8px 24px rgba(0,0,0,0.12));
  --transition: var(--theme-11-transition, all 0.3s cubic-bezier(0.4, 0, 0.2, 1));
  --transition-fast: var(--theme-11-transition-fast, all 0.2s cubic-bezier(0.4, 0, 0.2, 1));
  --transition-slow: var(--theme-11-transition-slow, all 0.5s cubic-bezier(0.4, 0, 0.2, 1));
  --ease-out: var(--theme-11-ease-out, cubic-bezier(0.25, 0.46, 0.45, 0.94));
  --ease-in-out: var(--theme-11-ease-in-out, cubic-bezier(0.42, 0, 0.58, 1));
}

/* Bootstrap Navbar Customization */
.theme-11 .navbar {
  padding: 0;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 1000;
}

.theme-11 .navbar .dropdown {
  position: relative;
  z-index: 1050;
}

.theme-11 .navbar-toggler {
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  transition: var(--transition-fast);
  border-radius: 8px;
}

.theme-11 .navbar-toggler:hover {
  background: var(--bg-light);
  border-color: var(--theme-color);
  transform: scale(1.05);
}

.theme-11 .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(var(--theme-color-rgb, 0, 123, 255), 0.1);
}

.theme-11 .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: var(--transition-fast);
}

.theme-11 .navbar-nav .nav-link {
  padding: 18px 24px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition-fast);
  border-bottom: 2px solid transparent;
  position: relative;
}

.theme-11 .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--theme-color);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.theme-11 .navbar-nav .nav-link:hover::after,
.theme-11 .navbar-nav .nav-link.active::after {
  width: 80%;
}

.theme-11 .navbar-nav .nav-link:hover,
.theme-11 .navbar-nav .nav-link.active {
  color: var(--theme-color);
  background: var(--bg-light);
  transform: translateY(-1px);
}

.theme-11 .dropdown-menu {
  border: 1px solid var(--border-color);
  border-top: none;
  box-shadow: var(--shadow-md);
  margin-top: 0;
  animation: fadeInUp 0.3s var(--ease-out);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  z-index: 1050;
  min-width: 200px;
}

.theme-11 .dropdown.show .dropdown-menu,
.theme-11 .dropdown-menu.show {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.theme-11 .dropdown-item {
  padding: 12px 20px;
  color: var(--text-dark);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.theme-11 .dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--theme-color);
  transform: scaleY(0);
  transition: var(--transition-fast);
}

.theme-11 .dropdown-item:hover::before {
  transform: scaleY(1);
}

.theme-11 .dropdown-item:hover {
  background: var(--bg-light);
  color: var(--theme-color);
  padding-left: 25px;
  transform: translateX(3px);
}

/* Base Styles */
body.theme-11 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.theme-11 * {
  box-sizing: border-box;
}

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

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

/* Apply fade-in to main content */
.theme-11 .container,
.theme-11 .home-section,
.theme-11 .product-card,
.theme-11 .category-banner-item {
  animation: fadeIn 0.6s var(--ease-out) backwards;
}

.theme-11 .product-card {
  animation-delay: calc(var(--i, 0) * 0.1s);
}

/* Typography */
.theme-11 h1, .theme-11 h2, .theme-11 h3, .theme-11 h4, .theme-11 h5, .theme-11 h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0;
}

.theme-11 a {
  transition: var(--transition);
}

.theme-11 button {
  font-family: inherit;
  transition: var(--transition-fast);
}

/* Enhanced Button Styles */
.theme-11 .btn,
.theme-11 button {
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.theme-11 .btn-primary,
.theme-11 .btn-outline-primary {
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 24px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.theme-11 .btn-primary::before,
.theme-11 .btn-outline-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.theme-11 .btn-primary:hover::before,
.theme-11 .btn-outline-primary:hover::before {
  width: 300px;
  height: 300px;
}

.theme-11 .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.theme-11 .btn-primary:active {
  transform: translateY(0);
}

.theme-11 .btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Container */
.theme-11 .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
.theme-11 .header-minimal {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  background: #ffffff;
}

.theme-11 .logo-section {
  display: flex;
  align-items: center;
}

.theme-11 .logo-img img,
.theme-11 .logo h1 {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.5px;
}

.theme-11 .logo-img img {
  max-height: 50px;
  width: auto;
}

.theme-11 .logo h1 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.theme-11 .logo h1 a:hover {
  color: var(--theme-color);
}

/* Search Section */
.theme-11 .search-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-11 .search-input-group {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.theme-11 .search-input-group input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 14px;
  transition: var(--transition-fast);
  background: var(--bg-light);
}

.theme-11 .search-input-group input:focus {
  outline: none;
  border-color: var(--theme-color);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(var(--theme-color-rgb, 0, 123, 255), 0.1);
  transform: scale(1.02);
}

.theme-11 .search-input-group input::placeholder {
  transition: var(--transition-fast);
  opacity: 0.6;
}

.theme-11 .search-input-group input:focus::placeholder {
  opacity: 0.4;
  transform: translateX(5px);
}

.theme-11 .search-input-group button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--theme-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-color);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.theme-11 .search-input-group button:hover {
  transform: translateY(-50%) scale(1.1) rotate(5deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.theme-11 .search-input-group button:active {
  transform: translateY(-50%) scale(0.95);
}

.theme-11 .search-input-group button {
  justify-content: center;
}

/* Cart Section */
.theme-11 .cart-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.theme-11 .cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
  background: transparent;
}

.theme-11 .cart-link:hover {
  border-color: var(--theme-color);
  background: var(--bg-light);
  text-decoration: none;
}

.theme-11 .cart-icon {
  font-size: 20px;
  color: var(--theme-color);
}

.theme-11 .cart-text {
  font-size: 14px;
  font-weight: 500;
}

.theme-11 .cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--theme-color);
  color: var(--text-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
}

/* Navigation Styles - Using Bootstrap 5 Navbar */
.theme-11 .navbar .dropdown-toggle::after {
  margin-left: 8px;
}

/* Utility Classes - Bootstrap 5 handles most utilities */
.theme-11 .x-hide {
  display: none !important;
}

.theme-11 .notification-container {
  z-index: 1050;
}

.theme-11 .text-theme {
  color: var(--theme-color);
}

.theme-11 .sorter-select {
  max-width: 200px;
}

.theme-11 .breadcrumb-clean {
  background: transparent;
  padding: 0;
}

.theme-11 .qty-input-group {
  max-width: 150px;
}

.theme-11 .logo-img-custom {
  max-height: 50px;
}

.theme-11 .search-input-custom {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
}

.theme-11 .search-input-custom:focus {
  background: #ffffff;
  border-color: var(--theme-color);
}

.theme-11 .search-btn-custom {
  background: var(--theme-color);
  color: var(--text-color);
  width: 38px;
  height: 38px;
  border: none;
}

.theme-11 .search-btn-custom:hover {
  background: var(--theme-color);
  color: var(--text-color);
  opacity: 0.9;
}

.theme-11 .cart-badge-custom {
  background: var(--theme-color);
}

/* Responsive Styles - Bootstrap 5 uses d-* utilities, but keeping some custom styles */
@media (max-width: 991px) {
  .theme-11 .product-info {
    padding-left: 0;
    margin-top: 30px;
  }
  .theme-11 .product-gallery {
    position: static;
  }
}

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

/* Smooth Scrolling */
.theme-11 html {
  scroll-behavior: smooth;
}

/* Focus Styles */
.theme-11 *:focus {
  outline: 2px solid var(--theme-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .theme-11 .no-print {
    display: none !important;
  }
}

/* ========================================
   ALL CSS FROM BLADE FILES MOVED HERE
   ======================================== */

/* Slider Styles */
.theme-11 .slider-minimal {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
}

.theme-11 .slider-item {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.theme-11 .slider-content {
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.theme-11 .slider-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.theme-11 .slider-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  font-weight: 400;
}

.theme-11 .slider-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--theme-color);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 2px solid var(--theme-color);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.theme-11 .slider-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.theme-11 .slider-btn:hover::before {
  width: 300px;
  height: 300px;
}

.theme-11 .slider-btn:hover {
  background: transparent;
  color: var(--theme-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.theme-11 .slider-btn:active {
  transform: translateY(-1px);
}

.theme-11 #slider-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.theme-11 .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--bg-light);
  border-top-color: var(--theme-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Home Page Styles */
.theme-11 .home-section {
  padding: 80px 0;
}

.theme-11 .section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.theme-11 .featured-products {
  padding: 60px 0;
  background: #ffffff;
}

.theme-11 .latest-products {
  padding: 60px 0;
  background: var(--bg-light);
}

.theme-11 .category-banners {
  padding: 60px 0;
  background: #ffffff;
}

.theme-11 .category-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.theme-11 .category-banner-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-light);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.theme-11 .category-banner-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(var(--theme-color-rgb, 0, 123, 255), 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.theme-11 .category-banner-item:hover::after {
  opacity: 1;
}

.theme-11 .category-banner-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.theme-11 .category-banner-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.theme-11 .category-banner-item:hover img {
  transform: scale(1.05);
}

.theme-11 .category-banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #ffffff;
}

.theme-11 .category-banner-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.theme-11 .testimonials-section {
  padding: 60px 0;
  background: #ffffff;
}

.theme-11 .testimonial-item {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.theme-11 .testimonial-text {
  font-size: 16px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.theme-11 .testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.theme-11 .testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.theme-11 .testimonial-name {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.theme-11 .testimonial-company {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.theme-11 .info-banner {
  padding: 20px 0;
  /* background: var(--bg-light); */
}

.theme-11 .info-banner-content {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.theme-11 .info-banner-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-bottom: 0 !important;
}

.theme-11 .info-banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 40px));
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  z-index: 2;
  width: 90%;
}

.theme-11 .info-banner-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  display: inline-block;
  margin-top: 0;
  padding: 12px 28px;
  background: var(--theme-color);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.theme-11 .info-banner-btn:hover {
  transform: translate(-50%, calc(-50% + 18px));
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  text-decoration: none;
  color: var(--text-color);
}

.theme-11 .info-banner-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
  z-index: 1;
}

.theme-11 .side-categories {
  padding: 60px 0;
  background: #ffffff;
}

.theme-11 .category-side-section {
  margin-bottom: 40px;
}

.theme-11 .category-side-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
  color: var(--text-dark);
}

.theme-11 .services-section {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
}

.theme-11 .service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--bg-light);
}

.theme-11 .service-item:last-child {
  border-bottom: none;
}

.theme-11 .service-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 12px;
  color: var(--theme-color);
  font-size: 24px;
  flex-shrink: 0;
}

.theme-11 .service-content {
  flex: 1;
  min-width: 0;
}

.theme-11 .service-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--text-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.theme-11 .service-content p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: calc(1.6em * 3);
}

/* Product Listings */
.theme-11 .page-header-minimal {
  padding: 60px 0 40px;
  background: var(--bg-light);
  margin-bottom: 40px;
}

.theme-11 .page-title-minimal {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.5px;
}

.theme-11 .product-grid-minimal {
  padding: 40px 0;
}

.theme-11 .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.theme-11 .category-grid-minimal {
  padding: 40px 0;
}

.theme-11 .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Product Single */
.theme-11 .breadcrumbs-minimal {
  padding: 20px 0;
  background: var(--bg-light);
  font-size: 14px;
}

.theme-11 .breadcrumbs-minimal .breadcrumb {
  margin: 0;
  padding: 0;
}

.theme-11 .breadcrumbs-minimal .breadcrumb-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.theme-11 .breadcrumbs-minimal .breadcrumb-item a:hover {
  color: var(--theme-color);
  text-decoration: none;
}

.theme-11 .breadcrumbs-minimal .breadcrumb-item.active {
  color: var(--text-dark);
  font-weight: 500;
}

.theme-11 .product-single-minimal {
  padding: 60px 0;
}

.theme-11 .product-gallery {
  position: sticky;
  top: 100px;
}

.theme-11 .main-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-light);
  margin-bottom: 20px;
  position: relative;
}

.theme-11 .main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.theme-11 .sale-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--theme-color);
  color: var(--text-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 10;
}

.theme-11 .thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.theme-11 .thumbnail-item {
  flex: 0 0 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.theme-11 .thumbnail-item.active {
  border-color: var(--theme-color);
}

.theme-11 .thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme-11 .product-info {
  padding-left: 40px;
}

.theme-11 .product-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.theme-11 .product-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.theme-11 .stars {
  display: flex;
  gap: 3px;
  color: #ffc107;
}

.theme-11 .stars .fa-star-o {
  color: var(--border-color);
}

.theme-11 .review-count {
  color: var(--text-light);
  font-size: 14px;
}

.theme-11 .stock-status {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.theme-11 .stock-status.in-stock {
  background: #e8f5e9;
  color: #2e7d32;
}

.theme-11 .stock-status.out-of-stock {
  background: #ffebee;
  color: #c62828;
}

.theme-11 .product-price {
  margin-bottom: 30px;
}

.theme-11 .price-current {
  font-size: 32px;
  font-weight: 700;
  color: var(--theme-color);
  margin-right: 15px;
}

.theme-11 .price-old {
  font-size: 20px;
  color: var(--text-light);
  text-decoration: line-through;
}

.theme-11 .product-description {
  margin-bottom: 30px;
  color: var(--text-light);
  line-height: 1.8;
}

.theme-11 .product-tabs {
  margin-top: 60px;
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
}

.theme-11 .tab-content-section {
  margin-top: 30px;
}

.theme-11 .tab-content-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.theme-11 .tab-content-section p {
  color: var(--text-light);
  line-height: 1.8;
}

.theme-11 .review-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--bg-light);
}

.theme-11 .review-item:last-child {
  border-bottom: none;
}

.theme-11 .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.theme-11 .review-author {
  font-weight: 600;
  color: var(--text-dark);
}

.theme-11 .review-date {
  color: var(--text-light);
  font-size: 14px;
}

.theme-11 .review-rating {
  margin-bottom: 10px;
}

.theme-11 .related-products {
  margin-top: 80px;
  padding: 60px 0;
  background: var(--bg-light);
}

.theme-11 .related-products-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
}

/* Product Card Styles */
.theme-11 .product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.theme-11 .product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--theme-color-rgb, 0, 123, 255), 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
  z-index: 1;
}

.theme-11 .product-card:hover::before {
  opacity: 1;
}

.theme-11 .product-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.theme-11 .product-image-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  padding-top: 100%;
}

.theme-11 .product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  will-change: transform;
}

.theme-11 .product-card:hover .product-image {
  transform: scale(1.08);
}

/* Image loading state */
.theme-11 .product-image {
  opacity: 0;
  animation: fadeIn 0.5s var(--ease-out) forwards;
}

.theme-11 .product-image[src] {
  opacity: 1;
}

.theme-11 .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--theme-color);
  color: var(--text-color);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* Product card actions (hover effects on product listings) */
.theme-11 .product-card .product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  z-index: 2;
}

.theme-11 .product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.theme-11 .product-card .product-actions .product-action-btn {
  animation: scaleIn 0.3s var(--ease-out) backwards;
}

.theme-11 .product-card .product-actions .product-action-btn:nth-child(1) {
  animation-delay: 0.1s;
}

.theme-11 .product-card .product-actions .product-action-btn:nth-child(2) {
  animation-delay: 0.15s;
}

.theme-11 .product-card .product-actions .product-action-btn:nth-child(3) {
  animation-delay: 0.2s;
}

/* Product single page actions (quantity, add to cart, buy now buttons) */
.theme-11 .product-info .product-actions {
  position: static !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 12px;
  opacity: 1 !important;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.theme-11 .product-info .product-actions .qty-input-group {
  width: auto;
  flex-shrink: 0;
}

.theme-11 .product-action-btn {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  color: var(--text-dark);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.theme-11 .product-action-btn:hover {
  background: var(--theme-color);
  color: var(--text-color);
  transform: scale(1.15) rotate(5deg);
  box-shadow: var(--shadow-md);
}

.theme-11 .product-action-btn:active {
  transform: scale(1.05) rotate(0deg);
}

.theme-11 .product-card .product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.theme-11 .product-card .product-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-11 .product-card .product-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.theme-11 .product-card .product-title a:hover {
  color: var(--theme-color);
  text-decoration: none;
}

.theme-11 .product-card .product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  font-size: 12px;
}

.theme-11 .product-card .product-rating .fa-star {
  color: #ffc107;
}

.theme-11 .product-card .product-rating .fa-star-o {
  color: var(--border-color);
}

.theme-11 .product-price-wrapper {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.theme-11 .product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color);
}

.theme-11 .product-price-old {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
}

.theme-11 .add-to-cart-btn {
  padding: 10px 20px;
  background: var(--theme-color);
  color: var(--text-color);
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.theme-11 .add-to-cart-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.theme-11 .add-to-cart-btn:hover::before {
  width: 200px;
  height: 200px;
}

.theme-11 .add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.theme-11 .add-to-cart-btn:active {
  transform: translateY(0);
}

.theme-11 .add-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Product List Item */
.theme-11 .product-list-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  transition: var(--transition);
}

.theme-11 .product-list-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--theme-color);
}

.theme-11 .product-list-image {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-light);
}

.theme-11 .product-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.theme-11 .product-list-item:hover .product-list-image img {
  transform: scale(1.1);
}

.theme-11 .product-list-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.theme-11 .product-list-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.theme-11 .product-list-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.theme-11 .product-list-title a:hover {
  color: var(--theme-color);
  text-decoration: none;
}

.theme-11 .product-list-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color);
}

.theme-11 .product-list-price-old {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 8px;
}

.theme-11 .product-list-action {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.theme-11 .product-list-cart-btn {
  width: 40px;
  height: 40px;
  background: var(--theme-color);
  color: var(--text-color);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.theme-11 .product-list-cart-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-sm);
}

/* Category Card */
.theme-11 .category-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  cursor: pointer;
  text-decoration: none;
  display: block;
  height: 100%;
}

.theme-11 .category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  text-decoration: none;
}

.theme-11 .category-image-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  padding-top: 75%;
}

.theme-11 .category-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.theme-11 .category-card:hover .category-image {
  transform: scale(1.1);
}

.theme-11 .category-info {
  padding: 20px;
  text-align: center;
}

.theme-11 .category-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  transition: var(--transition);
}

.theme-11 .category-card:hover .category-title {
  color: var(--theme-color);
}

.theme-11 .category-title a {
  color: var(--text-dark);
  text-decoration: none;
}

.theme-11 .category-card:hover .category-title a {
  color: var(--theme-color);
}

/* Footer Styles */
.theme-11 .footer-description {
  line-height: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  max-height: calc(2em * 65);
}
.theme-11 .footer-minimal {
  background: var(--text-dark);
  color: #ffffff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.theme-11 .footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

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

.theme-11 .footer-links li {
  margin-bottom: 12px;
}

.theme-11 .footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.theme-11 .footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
  text-decoration: none;
}

.theme-11 .footer-copyright {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.theme-11 .footer-social {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.theme-11 .footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
  font-size: 16px;
}

.theme-11 .footer-social a:hover {
  background: var(--theme-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-decoration: none;
}

.theme-11 .back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  color: var(--text-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.theme-11 .back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.theme-11 .back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  text-decoration: none;
  color: var(--text-color);
}

/* Owl Carousel Customization */
.theme-11  .owl-carousel .owl-wrapper-outer {
  padding: 10px 0;
}

.theme-11 .owl-carousel .owl-item {
  padding: 0 15px;
}

.theme-11 .featured-products .owl-carousel .owl-item .item, .theme-11 .latest-products .owl-carousel .owl-item .item {
  height: 395px;
}

.theme-11 .owl-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 20px;
  pointer-events: none;
}

.theme-11 .owl-carousel .owl-nav button {
  pointer-events: all;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.theme-11 .owl-carousel .owl-nav button:hover {
  background: var(--theme-color);
  color: var(--text-color);
  border-color: var(--theme-color);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.theme-11 .owl-carousel .owl-nav button:active {
  transform: scale(0.95);
}

.theme-11 .owl-carousel .owl-nav button.owl-prev {
  left: 0;
}

.theme-11 .owl-carousel .owl-nav button.owl-next {
  right: 0;
}

.theme-11 .owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.theme-11 .owl-carousel .owl-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  margin: 0 5px;
  border: none;
  transition: var(--transition);
}

.theme-11 .owl-carousel .owl-dots button.active {
  background: var(--theme-color);
  width: 30px;
  border-radius: 5px;
  transform: scale(1.2);
}

.theme-11 .owl-carousel .owl-dots button:hover {
  transform: scale(1.1);
  background: var(--theme-color);
  opacity: 0.7;
}

/* Responsive Updates */
@media (max-width: 768px) {
  .theme-11 .slider-title {
    font-size: 32px;
  }
  .theme-11 .slider-subtitle {
    font-size: 16px;
  }
  .theme-11 .slider-item {
    min-height: 400px;
  }
  .theme-11 .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   CART & CHECKOUT PAGES - Bootstrap 5 Styling
   ======================================== */

/* Cart Page */
.theme-11 .main-container.col1-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 15px;
}

.theme-11 .main-container.col1-layout .main.container {
  max-width: 100%;
  margin: 0 auto;
}

.theme-11 .main-container.col1-layout .col-main {
  width: 100%;
  max-width: 100%;
}

.theme-11 .cart-wrapper {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin: 40px auto;
  max-width: 1000px;
}

.theme-11 .cart-wrapper .page-title-minimal,
.theme-11 .checkout-page .page-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.theme-11 .cart_summary {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.theme-11 .cart_summary thead {
  background: var(--bg-light);
}

.theme-11 .cart_summary thead th {
  padding: 15px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  border-bottom: 2px solid var(--border-color);
  vertical-align: middle;
}

.theme-11 .cart_summary tbody td {
  padding: 20px 15px;
  vertical-align: middle;
  border-bottom: 1px solid var(--bg-light);
}

.theme-11 .cart_summary tbody tr:hover {
  background: var(--bg-light);
}

.theme-11 .cart_summary .cart_product {
  width: 120px;
}

.theme-11 .cart_summary .cart_product img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.theme-11 .cart_summary .cart_description {
  min-width: 200px;
}

.theme-11 .cart_summary .cart_description .product-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.theme-11 .cart_summary .cart_description .product-name a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.theme-11 .cart_summary .cart_description .product-name a:hover {
  color: var(--theme-color);
  text-decoration: none;
}

.theme-11 .cart_summary .price {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.theme-11 .cart_summary .qty input {
  width: 80px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 8px;
}

.theme-11 .cart_summary .action a {
  color: var(--text-light);
  font-size: 18px;
  transition: var(--transition);
  text-decoration: none;
}

.theme-11 .cart_summary .action a:hover {
  color: #dc3545;
  text-decoration: none;
}

.theme-11 .cart_summary tfoot {
  background: var(--bg-light);
}

.theme-11 .cart_summary tfoot td {
  padding: 15px;
  font-size: 16px;
  border-top: 2px solid var(--border-color);
}

.theme-11 .cart_summary tfoot strong {
  color: var(--theme-color);
  font-size: 18px;
}

.theme-11 .cart_navigation {
  margin-top: 30px;
  text-align: right;
}

.theme-11 .cart_navigation .checkout-btn {
  display: inline-block;
  padding: 12px 40px;
  background: var(--theme-color);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  border: 2px solid var(--theme-color);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.theme-11 .cart_navigation .checkout-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.theme-11 .cart_navigation .checkout-btn:hover::before {
  width: 300px;
  height: 300px;
}

.theme-11 .cart_navigation .checkout-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.theme-11 .cart_navigation .checkout-btn:active {
  transform: translateY(-1px);
}

/* Checkout Page */
.theme-11 .main-container.col2-right-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 15px;
}

.theme-11 .main-container.col2-right-layout .main.container {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

.theme-11 .main-container.col2-right-layout > .main.container > .row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  gap: 30px;
}

.theme-11 .main-container.col2-right-layout .col-main {
  flex: 0 0 calc(75% - 15px);
  max-width: calc(75% - 15px);
  padding: 0;
}

.theme-11 .main-container.col2-right-layout .right.sidebar {
  flex: 0 0 calc(25% - 15px);
  max-width: calc(25% - 15px);
  padding: 0;
}

.theme-11 .checkout-page {
  padding: 20px 0;
}

.theme-11 .checkout-page .box-border {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.theme-11 .checkout-page .box-border ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.theme-11 .checkout-page .box-border li {
  margin-bottom: 20px;
}

.theme-11 .checkout-page .box-border li:last-child {
  margin-bottom: 0;
}

.theme-11 .checkout-page .box-border li.row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-left: -15px !important;
  margin-right: -15px !important;
  margin-bottom: 20px !important;
  width: 100% !important;
}

.theme-11 .checkout-page .box-border li.row > div {
  padding-left: 15px !important;
  padding-right: 15px !important;
  box-sizing: border-box !important;
  position: relative;
  display: flex;
  flex-direction: column;
}

.theme-11 .checkout-page .box-border li.row > div:not(.col-sm-6):not(.col-xs-12):not([class*="col-"]) {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Force col-sm-6 to display side by side on all screen sizes */
@media (min-width: 577px) {
  .theme-11 .checkout-page .box-border li.row > div[class*="col-sm-6"],
  .theme-11 .checkout-page .box-border li.row > div.col-sm-6,
  .theme-11 .checkout-page .box-border li.row > div.select-col.col-sm-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
    min-width: 0 !important;
    float: none !important;
    clear: none !important;
  }
}

.theme-11 .checkout-page .box-border li.row > div[class*="col-xs-12"],
.theme-11 .checkout-page .box-border li.row > div.col-xs-12 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

@media (max-width: 576px) {
  .theme-11 .checkout-page .box-border li.row > div[class*="col-sm-6"],
  .theme-11 .checkout-page .box-border li.row > div.col-sm-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

.theme-11 .checkout-page .form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  transition: var(--transition);
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
  order: 1;
  margin-top: 0;
}

.theme-11 .checkout-page .form-control,
.theme-11 .form-control,
.theme-11 .form-select {
  transition: var(--transition-fast);
}

.theme-11 .checkout-page .form-control:focus,
.theme-11 .form-control:focus,
.theme-11 .form-select:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 4px rgba(var(--theme-color-rgb, 0, 123, 255), 0.1);
  outline: none;
  transform: translateY(-1px);
}

.theme-11 .checkout-page .form-control::placeholder,
.theme-11 .form-control::placeholder {
  transition: var(--transition-fast);
  opacity: 0.6;
}

.theme-11 .checkout-page .form-control:focus::placeholder,
.theme-11 .form-control:focus::placeholder {
  opacity: 0.4;
}

.theme-11 .checkout-page label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  order: -1;
  margin-top: 0;
}

.theme-11 .checkout-page label.required::after {
  content: " *";
  color: #dc3545;
}

.theme-11 .checkout-page .mt-15 {
  margin-top: 15px;
}

.theme-11 .checkout-page .mt-25 {
  margin-top: 25px;
}

.theme-11 .checkout-sep {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}

.theme-11 .select-opt {
  margin-bottom: 20px;
}

.theme-11 .select-opt div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 10px;
  transition: var(--transition);
}

.theme-11 .select-opt div:hover {
  border-color: var(--theme-color);
  background: var(--bg-light);
}

.theme-11 .select-opt input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--theme-color);
}

.theme-11 .select-opt label {
  margin: 0;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
}

.theme-11 .x-btn {
  padding: 12px 40px;
  background: var(--theme-color);
  color: var(--text-color);
  border: 2px solid var(--theme-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.theme-11 .x-btn:hover {
  background: transparent;
  color: var(--theme-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.theme-11 .x-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Sidebar Checkout */
.theme-11 .sidebar-checkout {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.theme-11 .sidebar-bar-title h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.theme-11 .block-content dl {
  margin: 0;
  padding: 0;
}

.theme-11 .block-content dl dt {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.theme-11 .block-content dl dd {
  margin-left: 0;
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 14px;
}

/* Error Messages */
.theme-11 .checkout-page [style*="color: red"] {
  background: #fee;
  border: 1px solid #fcc;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}

.theme-11 .checkout-page [style*="color: red"] ul {
  margin: 0;
  padding-left: 20px;
}

.theme-11 .checkout-page [style*="color: red"] li {
  color: #dc3545;
  margin-bottom: 5px;
}

/* Empty Cart Message */
.theme-11 #cart-body p {
  padding: 60px 20px;
  color: var(--text-light);
  font-size: 16px;
}

/* Responsive Updates */
@media (max-width: 768px) {
  .theme-11 .main-container.col1-layout {
    padding: 20px 15px;
  }
  
  .theme-11 .cart-wrapper {
    padding: 20px 15px;
    margin: 20px auto;
  }
  
  .theme-11 .cart_summary {
    font-size: 14px;
  }
  
  .theme-11 .cart_summary thead th,
  .theme-11 .cart_summary tbody td {
    padding: 10px 8px;
  }
  
  .theme-11 .cart_summary .cart_product {
    width: 80px;
  }
  
  .theme-11 .cart_summary .cart_product img {
    width: 60px;
    height: 60px;
  }
  
  .theme-11 .checkout-page .box-border {
    padding: 20px 15px;
  }
  
  .theme-11 .main-container.col2-right-layout .row {
    flex-direction: column;
    gap: 20px;
  }
  
  .theme-11 .main-container.col2-right-layout .col-main {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .theme-11 .main-container.col2-right-layout .right.sidebar {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .theme-11 .sidebar-checkout {
    position: static;
    margin-top: 0;
  }
  
  .theme-11 .cart_navigation {
    text-align: center;
  }
  
  .theme-11 .cart_navigation .checkout-btn {
    width: 100%;
    display: block;
  }
}

