/* Theme 13 - Modern Minimalist Fashion Theme - Bootstrap 5 */

/* CSS Variables - Modern Minimalist Fashion Store */
:root {
  --theme-13-primary: #f47c20;
  --theme-13-primary-dark: #d4650f;
  --theme-13-primary-light: #ff8f3d;
  --theme-13-accent: #ffd166;
  --theme-13-accent-dark: #ffc635;
  --theme-13-dark-gray: #333333;
  --theme-13-medium-gray: #666666;
  --theme-13-light-gray: #f8f8f8;
  --theme-13-bg-white: #ffffff;
  --theme-13-text-primary: #000000;
  --theme-13-text-secondary: #555555;
  --theme-13-text-white: #ffffff;
  --theme-13-border: #e0e0e0;
  --theme-13-border-light: #f0f0f0;
  --theme-13-shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --theme-13-shadow-md: 0 4px 8px rgba(0,0,0,0.08);
  --theme-13-shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
  --theme-13-transition: all 0.3s ease;
  --theme-13-transition-fast: all 0.2s ease;
  --theme-13-transition-slow: all 0.5s ease;
}

.theme-13 {
  --primary: var(--theme-13-primary);
  --primary-dark: var(--theme-13-primary-dark);
  --primary-light: var(--theme-13-primary-light);
  --accent: var(--theme-13-accent);
  --accent-dark: var(--theme-13-accent-dark);
  --dark-gray: var(--theme-13-dark-gray);
  --medium-gray: var(--theme-13-medium-gray);
  --bg-light: var(--theme-13-light-gray);
  --bg-white: var(--theme-13-bg-white);
  --text-primary: var(--theme-13-text-primary);
  --text-secondary: var(--theme-13-text-secondary);
  --text-white: var(--theme-13-text-white);
  --border: var(--theme-13-border);
  --border-light: var(--theme-13-border-light);
  --shadow-sm: var(--theme-13-shadow-sm);
  --shadow-md: var(--theme-13-shadow-md);
  --shadow-lg: var(--theme-13-shadow-lg);
  --transition: var(--theme-13-transition);
  --transition-fast: var(--theme-13-transition-fast);
  --transition-slow: var(--theme-13-transition-slow);
}

/* Base Styles */
body.theme-13 {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.theme-13 h1, .theme-13 h2, .theme-13 h3, .theme-13 h4, .theme-13 h5, .theme-13 h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--text-primary);
}

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

html {
  scroll-behavior: smooth;
}

/* Header Styles - Fixed Top */
.theme-13 .theme-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}


.theme-13 .theme-logo-text {
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  transition: var(--transition);
}

.theme-13 .theme-logo-text:hover {
  color: var(--primary);
}

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

/* Search Styles - Icon Only */
.theme-13 .theme-search-input {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 40px 10px 15px;
  font-size: 14px;
  transition: var(--transition);
  width: 100%;
  font-family: 'Open Sans', sans-serif;
}

.theme-13 .theme-search-input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(244, 124, 32, 0.1);
}

.theme-13 .theme-search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 4px;
  color: var(--medium-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.theme-13 .theme-search-btn:hover {
  background: var(--bg-light);
  color: var(--primary);
}

/* Cart Button */
.theme-13 .theme-cart-btn {
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 4px;
  padding: 10px 18px;
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
  transition: var(--transition);
  font-size: 14px;
}

.theme-13 .theme-cart-btn:hover {
  background: var(--bg-light);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.theme-13 .theme-cart-badge {
  background: var(--primary);
  color: var(--text-white);
}

/* Navbar Styles */
.theme-13 .theme-navbar {
  background: var(--bg-white);
  padding: 0;
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
}

body.theme-13 {
  padding-top: 140px;
}

.theme-13 .theme-navbar .navbar-nav .nav-link {
  color: var(--text-primary);
  padding: 16px 20px;
  font-weight: 500;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  transition: var(--transition);
  position: relative;
}

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

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

.theme-13 .theme-navbar .navbar-nav .nav-link:hover,
.theme-13 .theme-navbar .navbar-nav .nav-link.active {
  color: var(--primary);
  background: transparent;
}

.theme-13 .theme-categories-btn {
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 4px;
  padding: 10px 18px;
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
  transition: var(--transition);
  font-size: 14px;
}

.theme-13 .theme-categories-btn:hover {
  background: var(--bg-light);
  border-color: var(--primary);
  color: var(--primary);
}

.theme-13 .theme-dropdown-menu {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  margin-top: 8px;
  min-width: 220px;
}

.theme-13 .theme-dropdown-menu .dropdown-item {
  padding: 10px 20px;
  color: var(--text-primary);
  transition: var(--transition);
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}

.theme-13 .theme-dropdown-menu .dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary);
}

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

.theme-13 .section-title {
  font-size: 32px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.theme-13 .featured-products {
  padding: 60px 0;
  background: var(--bg-white);
}

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

.theme-13 .category-banners {
  padding: 60px 0;
  background: var(--bg-white);
}

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

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

.theme-13 .category-banner-item:hover {
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

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

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

.theme-13 .category-banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--text-white);
}

.theme-13 .category-banner-title {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: var(--text-white);
}

/* Product Card Styles - 4 Columns, Clean Design */
.theme-13 .product-card {
  background: var(--bg-white);
  border-radius: 0;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.theme-13 .product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

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

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

.theme-13 .product-card:hover .product-image {
  transform: scale(1.05);
}

.theme-13 .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: var(--text-white);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.3px;
  z-index: 2;
  text-transform: uppercase;
}

.theme-13 .product-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  z-index: 2;
}

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

.theme-13 .product-action-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  color: var(--text-primary);
}

.theme-13 .product-action-btn:hover {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.theme-13 .product-info {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.theme-13 .product-title {
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.theme-13 .product-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

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

.theme-13 .product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 15px;
  font-size: 14px;
}

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

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

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

.theme-13 .product-price {
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  color: var(--text-primary);
}

.theme-13 .product-price-old {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-left: 8px;
}

.theme-13 .add-to-cart-btn {
  padding: 10px 18px;
  background: var(--primary);
  color: var(--text-white);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.theme-13 .add-to-cart-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

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

/* Product List Item */
.theme-13 .product-list-item {
  display: flex;
  gap: 20px;
  padding: 15px;
  background: var(--bg-white);
  border-radius: 0;
  border: 1px solid var(--border-light);
  margin-bottom: 15px;
  transition: var(--transition);
}

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

.theme-13 .product-list-image {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
}

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

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

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

.theme-13 .product-list-title {
  font-size: 16px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
}

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

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

.theme-13 .product-list-price {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  color: var(--primary);
}

.theme-13 .product-list-price-old {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-left: 10px;
  font-family: 'Open Sans', sans-serif;
}

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

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

.theme-13 .product-list-cart-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Testimonials */
.theme-13 .testimonials-section {
  padding: 60px 0;
  background: var(--bg-white);
}

.theme-13 .testimonial-item {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 0;
  text-align: center;
  border: 1px solid var(--border-light);
}

.theme-13 .testimonial-text {
  font-size: 16px;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
}

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

.theme-13 .testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.theme-13 .testimonial-name {
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  margin: 0;
  font-size: 16px;
}

.theme-13 .testimonial-company {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

/* Info Banner */
.theme-13 .info-banner {
  padding: 20px 0;
}

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

.theme-13 .info-banner-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.theme-13 .info-banner-title {
  position: relative;
  z-index: 2;
  font-size: 28px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  margin: 0 0 20px 0;
  color: var(--text-white);
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.theme-13 .info-banner-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 10px 18px;
  background: var(--primary);
  color: var(--text-white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  transition: var(--transition);
}

.theme-13 .info-banner-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text-white);
}

.theme-13 .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.4), rgba(0,0,0,0.6));
  z-index: 1;
}

/* Side Categories */
.theme-13 .side-categories {
  padding: 60px 0;
  background: var(--bg-light);
}

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

.theme-13 .category-side-title {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  color: var(--text-primary);
}

/* Services Section */
.theme-13 .services-section {
  background: var(--bg-white);
  padding: 25px;
  border-radius: 0;
  border: 1px solid var(--border-light);
}

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

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

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

.theme-13 .service-item:hover .service-icon {
  background: var(--primary);
  color: var(--text-white);
}

.theme-13 .service-content {
  flex: 1;
}

.theme-13 .service-content h3 {
  font-size: 16px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  margin: 0 0 6px 0;
  color: var(--text-primary);
}

.theme-13 .service-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
  font-family: 'Open Sans', sans-serif;
}

/* Category Card */
.theme-13 .category-card {
  background: var(--bg-white);
  border-radius: 0;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  cursor: pointer;
  text-decoration: none;
  display: block;
  height: 100%;
}

.theme-13 .category-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
  text-decoration: none;
}

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

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

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

.theme-13 .category-info {
  padding: 25px;
  text-align: center;
}

.theme-13 .category-title {
  font-size: 18px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  margin: 0;
  transition: var(--transition);
}

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

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

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

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

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

.theme-13 .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-13 .owl-carousel .owl-nav button {
  pointer-events: all;
  width: 45px;
  height: 45px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-primary);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.theme-13 .owl-carousel .owl-nav button:hover {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

.theme-13 .owl-carousel .owl-dots button.active {
  background: var(--primary);
  width: 30px;
  border-radius: 4px;
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  body.theme-13 {
    padding-top: 100px;
  }
  .theme-13 .theme-header {
    padding: 10px 0;
  }
  .theme-13 .theme-navbar {
    top: 60px;
    padding: 8px 0;
  }
  .theme-13 .section-title {
    font-size: 22px;
    margin-bottom: 25px;
  }
  
  .theme-13 .home-section {
    padding: 40px 0;
  }
  
  .theme-13 .product-card {
    margin-bottom: 15px;
  }
  
  .theme-13 .category-banner-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .theme-13 .product-list-item {
    flex-direction: column;
    gap: 15px;
  }
  
  .theme-13 .product-list-image {
    width: 100%;
    height: 200px;
  }
}

/* Page Header Styles */
.theme-13 .page-header-minimal {
  padding: 60px 0 40px;
  background: var(--bg-light);
  margin-bottom: 40px;
}

.theme-13 .page-title-minimal {
  font-size: 32px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.3px;
}

/* Category Grid */
.theme-13 .category-grid-minimal {
  padding: 40px 0;
}

/* Product Grid */
.theme-13 .product-grid-minimal {
  padding: 40px 0;
}

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

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

.theme-13 .breadcrumbs-minimal .breadcrumb-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  font-family: 'Open Sans', sans-serif;
}

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

.theme-13 .breadcrumbs-minimal .breadcrumb-item.active {
  color: var(--text-primary);
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
}

/* Product Single Page */
.theme-13 .product-single-minimal {
  padding: 60px 0;
}

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

.theme-13 .main-image {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-light);
  margin-bottom: 15px;
  position: relative;
  border: 1px solid var(--border-light);
}

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

.theme-13 .sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: var(--text-white);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.3px;
  z-index: 10;
  text-transform: uppercase;
}

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

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

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

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

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

.theme-13 .product-info .product-title {
  font-size: 28px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  margin-bottom: 15px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

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

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

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

.theme-13 .product-info .review-count {
  color: var(--text-secondary);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

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

.theme-13 .product-info .price-current {
  font-size: 28px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  color: var(--primary);
  margin-right: 15px;
}

.theme-13 .product-info .price-old {
  font-size: 18px;
  color: var(--text-secondary);
  text-decoration: line-through;
  font-family: 'Open Sans', sans-serif;
}

.theme-13 .product-info .product-description {
  margin-bottom: 25px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
}

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

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

.theme-13 .tab-content-section h3 {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.theme-13 .tab-content-section p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
}

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

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

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

.theme-13 .review-author {
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
}

.theme-13 .review-date {
  color: var(--text-secondary);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

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

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

.theme-13 .related-products-title {
  font-size: 24px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin-bottom: 35px;
  color: var(--text-primary);
}

/* Footer Styles */
.theme-13 .footer-minimal {
  background: var(--dark-gray);
  color: var(--text-white);
  padding: 60px 0 20px;
  margin-top: 80px;
}

.theme-13 .footer-title {
  font-size: 16px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 18px;
  color: var(--text-white);
}

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

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

.theme-13 .footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  transition: var(--transition);
}

.theme-13 .footer-links a:hover {
  color: var(--text-white);
  padding-left: 5px;
  text-decoration: none;
}

.theme-13 .footer-copyright {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

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

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

.theme-13 .footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
}

.theme-13 .back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--text-white);
  border-radius: 4px;
  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-13 .back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.theme-13 .back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-decoration: none;
  color: var(--text-white);
  background: var(--primary);
}

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

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

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

.theme-13 .slider-title {
  font-size: 42px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: var(--text-white);
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.theme-13 .slider-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 25px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

.theme-13 .slider-btn {
  display: inline-block;
  padding: 10px 18px;
  background: var(--primary);
  color: var(--text-white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.theme-13 .slider-btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.theme-13 .slider-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text-white);
}

.theme-13 .slider-btn.secondary:hover {
  background: var(--accent);
  color: var(--text-primary);
}

.theme-13 #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-13 .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--bg-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Container Width */
.theme-13 .container {
  max-width: 1200px;
}

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

/* Responsive Updates for Product Single */
@media (max-width: 991px) {
  body.theme-13 {
    padding-top: 120px;
  }
  .theme-13 .theme-navbar {
    top: 70px;
  }
  .theme-13 .product-info {
    padding-left: 0;
    margin-top: 30px;
  }
  .theme-13 .product-gallery {
    position: static;
  }
  .theme-13 .slider-title {
    font-size: 28px;
  }
  .theme-13 .slider-subtitle {
    font-size: 14px;
  }
  .theme-13 .slider-item {
    min-height: 350px;
  }
  .theme-13 .section-title {
    font-size: 24px;
  }
}

/* Utility Classes */
.theme-13 .text-theme {
  color: var(--primary);
}

.theme-13 .bg-theme {
  background: var(--primary);
}

.theme-13 .border-theme {
  border-color: var(--primary);
}

