/* ============= MODERN SINGLE PRODUCT PAGE ================ */

/* Modern Product Info Card */
.modern-product-info {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

/* Product Title Section */
.product-title-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.modern-product-title {
  font-size: var(--font-size-2xl, 1.5rem);
  font-weight: var(--font-weight-bold, 700);
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: 'Montserrat', sans-serif;
}

.product-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.modern-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: var(--font-size-xs, 0.75rem);
  font-weight: var(--font-weight-medium, 500);
  white-space: nowrap;
}

.modern-badge-primary {
  background: linear-gradient(135deg, #45B8AC 0%, #3a9b8f 100%);
  color: #fff;
}

.modern-badge-secondary {
  background: #f0f0f0;
  color: #666;
}

/* Rating Section */
.product-rating-section-modern {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

/* Price & Stock Section */
.modern-price-stock-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.modern-price-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-label {
  font-size: var(--font-size-sm, 0.875rem);
  color: #666;
  font-weight: var(--font-weight-medium, 500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modern-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-amount {
  font-size: var(--font-size-3xl, 1.875rem);
  font-weight: var(--font-weight-bold, 700);
  color: #333;
  line-height: 1;
}

.price-currency {
  font-size: var(--font-size-lg, 1.125rem);
  font-weight: var(--font-weight-semibold, 600);
  color: #666;
}

.free-shipping-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #fff;
  border-radius: 8px;
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: var(--font-weight-semibold, 600);
  margin-top: 0.5rem;
  width: fit-content;
}

.shipping-info {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #666;
  font-size: var(--font-size-sm, 0.875rem);
  margin-top: 0.5rem;
}

.modern-stock-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stock-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stock-label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--font-size-sm, 0.875rem);
  color: #666;
  font-weight: var(--font-weight-medium, 500);
}

.stock-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-base, 1rem);
  font-weight: var(--font-weight-semibold, 600);
  padding: 0.75rem;
  border-radius: 8px;
  background: #f8f9fa;
}

.stock-value.in-stock {
  color: #28a745;
  background: rgba(40, 167, 69, 0.1);
}

.stock-value.out-of-stock {
  color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

/* Action Buttons */
.modern-product-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.action-button-wrapper {
  display: flex;
  justify-content: flex-start;
}

.cart-section {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.quantity-wrapper {
  flex: 0 0 auto;
}

.cart-button-wrapper {
  flex: 1;
}

/* Sticky Price Box */
.modern-sticky-price-box {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 1px solid #e9ecef;
  display: none;
}

.modern-sticky-price-box.visible {
  transform: translateY(0);
  display: block;
}

.sticky-price-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-price-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sticky-price-amount {
  font-size: var(--font-size-xl, 1.25rem);
  font-weight: var(--font-weight-bold, 700);
  color: #333;
}

.sticky-free-shipping {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--font-size-xs, 0.75rem);
  color: #28a745;
  font-weight: var(--font-weight-medium, 500);
}

.sticky-actions {
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .modern-price-stock-section {
    grid-template-columns: 1fr;
  }
  
  .modern-sticky-price-box {
    display: block;
  }
  
  .sticky-price-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .sticky-actions {
    width: 100%;
  }
  
  .sticky-actions .btn,
  .sticky-actions button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .modern-product-info {
    padding: 1rem;
  }
  
  .modern-product-title {
    font-size: var(--font-size-xl, 1.25rem);
  }
  
  .price-amount {
    font-size: var(--font-size-2xl, 1.5rem);
  }
  
  .modern-price-stock-section {
    padding: 1rem;
  }
  
  .cart-section {
    flex-direction: column;
  }
  
  .cart-button-wrapper {
    width: 100%;
  }
  
  .cart-button-wrapper .btn,
  .cart-button-wrapper button {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .modern-sticky-price-box {
    display: none !important;
  }
}


/* ============= LEGACY STYLES (Yorumlar için) ================ */

.direct-chat.chat-pane-open .direct-chat-contacts {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  }

.direct-chat-messages {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  height: 250px;
  overflow: auto;
  padding: 10px;
  }

.direct-chat-msg,
.direct-chat-text {
  display: block;
  }

.direct-chat-msg {
  margin-bottom: 20px;
  }

.direct-chat-msg::after {
  display: block;
  clear: both;
  content: "";
  }

.direct-chat-messages {
  transition: -webkit-transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
  }

.direct-chat-text {
  border-radius: 0.3rem;
  background: #d2d6de;
  border: 1px solid #d2d6de;
  color: #444;
  margin: 5px 0 0 50px;
  padding: 5px 10px;
  position: relative;
  }

.direct-chat-text::after, .direct-chat-text::before {
  border: solid transparent;
  border-right-color: #d2d6de;
  content: ' ';
  height: 0;
  pointer-events: none;
  position: absolute;
  right: 100%;
  top: 15px;
  width: 0;
  }

.direct-chat-text::after {
  border-width: 5px;
  margin-top: -5px;
  }

.direct-chat-text::before {
  border-width: 6px;
  margin-top: -6px;
  }

.direct-chat-img {
  border-radius: 50%;
  float: left;
  height: 40px;
  width: 40px;
  }

.right .direct-chat-img {
  float: right;
  }

.direct-chat-name {
  font-weight: 600;
  }

.direct-chat-timestamp {
  color: #697582;
  }

/* ============= FAVORITES ================ */

#favButton {
  background-color:#88B04B;
  border: #88B04B;
  color:white;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

#favButton:hover {
  background-color:#b2d779;
  border: #b2d779;
  color:white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(136, 176, 75, 0.3);
}

/* ============= ADD SHOPPING CART ================ */

#addCartButton {
  background-color:#88B04B;
  border: #926AA6;
  color:white;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

#addCartButton:hover {
  background-color:#b2d779;
  border: #b895c9;
  color:white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(136, 176, 75, 0.3);
}

/* ============= MODERN SELLER CARD ================ */

.modern-seller-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.modern-seller-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Seller Header */
.seller-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.seller-icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.seller-title-section {
  flex: 1;
}

.seller-card-label {
  font-size: var(--font-size-xs, 0.75rem);
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: var(--font-weight-medium, 500);
  margin: 0 0 0.5rem 0;
}

.seller-shop-name {
  font-size: var(--font-size-lg, 1.125rem);
  font-weight: var(--font-weight-bold, 700);
  color: #333;
  margin: 0 0 0.5rem 0;
}

.seller-shop-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.seller-shop-name a:hover {
  color: #667eea;
  text-decoration: none;
}

.seller-location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--font-size-sm, 0.875rem);
  color: #666;
}

/* Seller Rating */
.seller-rating-section {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.seller-rating-display {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.rating-number {
  font-size: var(--font-size-2xl, 1.5rem);
  font-weight: var(--font-weight-bold, 700);
  color: #333;
  line-height: 1;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
  color: #ffc107;
  font-size: 1.1rem;
}

.rating-stars .bi-star-fill {
  color: #ffc107;
}

.rating-stars .bi-star-half {
  color: #ffc107;
}

.rating-stars .bi-star {
  color: #ddd;
}

.rating-count {
  font-size: var(--font-size-xs, 0.75rem);
  color: #666;
}

.no-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #999;
  font-size: var(--font-size-sm, 0.875rem);
}

/* Seller Stats */
.seller-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 8px;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-value {
  font-size: var(--font-size-xl, 1.25rem);
  font-weight: var(--font-weight-bold, 700);
  color: #667eea;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: var(--font-size-xs, 0.75rem);
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Trust Badges */
.seller-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  border-radius: 8px;
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: var(--font-weight-medium, 500);
}

.trust-badge-verified {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.trust-badge-popular {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.trust-badge i {
  font-size: 1.1rem;
}

/* Action Buttons */
.seller-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.seller-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: var(--font-weight-semibold, 600);
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.seller-action-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.seller-action-primary:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  text-decoration: none;
}

.seller-action-secondary {
  background: #f8f9fa;
  color: #333;
  border: 1px solid #e9ecef;
}

.seller-action-secondary:hover {
  background: #e9ecef;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Quick Buy Button */
.seller-card-wrapper {
  position: relative;
  z-index: 5;
}

.seller-quick-buy {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
  position: relative;
  z-index: 6;
}

.seller-quick-buy-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 50%, #FFD1DC 100%);
  border: none;
  border-radius: 8px;
  color: #8B4A6B;
  font-weight: var(--font-weight-semibold, 600);
  font-size: var(--font-size-base, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(255, 182, 193, 0.3);
  position: relative;
  z-index: 7;
}

.seller-quick-buy-btn:hover {
  background: linear-gradient(135deg, #FFA8B8 0%, #FFB6C1 50%, #FFC8D8 100%);
  box-shadow: 0 4px 12px rgba(255, 182, 193, 0.5);
  transform: translateY(-2px);
  color: #8B4A6B;
}

.seller-quick-buy-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(255, 182, 193, 0.4);
}

.seller-quick-buy-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 182, 193, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .modern-seller-card {
    padding: 1rem;
  }
  
  .seller-card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .seller-icon-wrapper {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }
  
  .seller-stats {
    flex-direction: column;
  }
}

/* ============= MODERN PRODUCT TABS ================ */

.modern-product-tabs-container {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* Tab Navigation */
.modern-tab-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  border-bottom: 2px solid #e9ecef;
  gap: 0.5rem;
}

.modern-tab-nav.nav-pills {
  border-bottom: none;
  gap: 1rem;
}

.modern-tab-item {
  margin: 0;
}

.modern-tab-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  color: #666;
  text-decoration: none;
  border: none;
  background: transparent;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  font-weight: var(--font-weight-medium, 500);
  font-size: var(--font-size-base, 1rem);
  position: relative;
  margin-bottom: -2px;
  border-radius: 0;
}

.modern-tab-nav.nav-pills .modern-tab-link {
  border-bottom: none;
  border-radius: 50px;
  background: #f8f9fa;
  margin-bottom: 0;
}

.modern-tab-nav.nav-pills .modern-tab-link:hover {
  background: #e9ecef;
  color: #333;
}

.modern-tab-nav.nav-pills .modern-tab-link.active {
  background: linear-gradient(135deg, #45B8AC 0%, #3a9b8f 100%);
  color: #fff;
  border-bottom: none;
}

.modern-tab-link i {
  font-size: 1.1rem;
}

.modern-tab-link:hover {
  color: #667eea;
  text-decoration: none;
  background: rgba(102, 126, 234, 0.05);
}

.modern-tab-link.active {
  color: #667eea;
  border-bottom-color: #667eea;
  font-weight: var(--font-weight-semibold, 600);
}

.tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 0.375rem;
  background: #45B8AC;
  color: #fff;
  border-radius: 10px;
  font-size: var(--font-size-xs, 0.75rem);
  font-weight: var(--font-weight-bold, 700);
  margin-left: 0.25rem;
}

.modern-tab-nav.nav-pills .modern-tab-link.active .tab-badge {
  background: rgba(255, 255, 255, 0.3);
}

/* Tab Content */
.modern-tab-content {
  padding: 2rem 0;
}

.modern-tab-pane {
  display: none;
}

.modern-tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Details Container */
.modern-details-container {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.detail-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm, 0.875rem);
  color: #666;
  font-weight: var(--font-weight-medium, 500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-label i {
  font-size: 1rem;
  color: #667eea;
}

.detail-value {
  font-size: var(--font-size-base, 1rem);
  color: #333;
  font-weight: var(--font-weight-semibold, 600);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: var(--font-size-xs, 0.75rem);
  font-weight: var(--font-weight-semibold, 600);
}

.status-active {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

/* Reviews Container */
.modern-reviews-container {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Responsive Tabs */
@media (max-width: 768px) {
  .modern-tab-nav {
    flex-direction: column;
    border-bottom: none;
    gap: 0.5rem;
  }
  
  .modern-tab-link {
    border-bottom: none;
    border-left: 3px solid transparent;
    border-radius: 8px;
    margin-bottom: 0;
  }
  
  .modern-tab-link.active {
    border-left-color: #667eea;
    border-bottom-color: transparent;
    background: rgba(102, 126, 234, 0.1);
  }
  
  .product-details-grid {
    grid-template-columns: 1fr;
  }
  
  .modern-details-container,
  .modern-reviews-container {
    padding: 1rem;
  }
}

/* ============= MODERN PRODUCT LAYOUT ================ */

/* Modern Product Layout - Bootstrap row kullanılıyor, özel CSS gerekmiyor */

/* Container genişliğini artır */
.single-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.single-page-container .modern-product-tabs-container {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .modern-product-layout > [class*="col-"] {
    margin-bottom: 1rem;
  }
}

/* Product Description Section */
.product-description-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #f0f0f0;
}

.product-description-section h3 {
  font-size: var(--font-size-lg, 1.125rem);
  font-weight: var(--font-weight-semibold, 600);
  color: #333;
  margin-bottom: 1rem;
}

.product-description-section #description {
  color: #555;
  line-height: 1.7;
  font-size: var(--font-size-base, 1rem);
}

.product-description-section #description p {
  margin-bottom: 1rem;
}

.product-description-section #description img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

#product-price {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#product-price h3 {
  font-size: var(--font-size-xl, 1.25rem);
  font-weight: var(--font-weight-semibold, 600);
  color: #333;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f0f0f0;
}

#description {
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-relaxed, 1.75);
  color: #555;
}

#description p {
  margin-bottom: 1rem;
}

#description img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

/* ShareThis Modern Styling */
.sharethis-inline-share-buttons {
  margin: 2rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

/* Modern Similar Products Section — ürün kartları / detay sekmeleri ile aynı dil */
.modern-similar-products-section {
  margin-top: 2.5rem;
  padding: 2rem 0 2.75rem;
  background: #fff;
  border-top: 1px solid #edf0f2;
}

.similar-section-header {
  margin: 0 0 1.5rem;
  padding: 0 0 1rem 1rem;
  border-left: 3px solid #45b8ac;
  border-bottom: 1px solid #edf0f2;
  text-align: left;
}

.similar-section-title {
  margin: 0 0 0.35rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.similar-section-lead {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #6c757d;
  line-height: 1.5;
  max-width: 42rem;
}

.similar-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 0;
  position: relative;
}

.similar-product-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.similar-product-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #45B8AC, #3a9b8f);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.similar-product-item:hover {
  transform: translateY(-8px) scale(1.02);
}

.similar-product-item:hover::before {
  opacity: 0.1;
}

.no-similar-products {
  padding: 4rem 2rem;
  text-align: center;
}

.no-similar-products i {
  opacity: 0.5;
  display: block;
  margin-bottom: 1rem;
}

.no-similar-products p {
  color: #999;
  font-size: var(--font-size-lg, 1.125rem);
}

/* Responsive Similar Products */
@media (max-width: 1200px) {
  .similar-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .similar-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .modern-similar-products-section {
    padding: 1.5rem 0 2rem;
    margin-top: 1.75rem;
  }

  .similar-section-header {
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    padding-left: 0.75rem;
  }

  .similar-section-title {
    font-size: 1.125rem;
  }

  .similar-section-lead {
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .similar-products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Seller Card Container Fix */
.seller-card-wrapper {
  position: sticky;
  top: 20px;
}

.modern-seller-card {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

@media (max-width: 991px) {
  .seller-card-wrapper {
    position: relative;
    top: 0;
  }
  
  .modern-seller-card {
    max-height: none;
  }
}

/* Modern Comments Section */
.modern-comments-section {
  margin-top: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.modern-comment-form {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.comment-form-header {
  margin-bottom: 1.5rem;
}

.comment-form-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--font-size-lg, 1.125rem);
  font-weight: var(--font-weight-semibold, 600);
  color: #333;
  margin: 0;
}

.comment-form-title i {
  color: #45B8AC;
  font-size: 1.25rem;
}

.comment-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modern-comment-input {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
  font-size: var(--font-size-base, 1rem);
  resize: vertical;
  transition: border-color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.modern-comment-input:focus {
  border-color: #45B8AC;
  outline: none;
  box-shadow: 0 0 0 3px rgba(69, 184, 172, 0.1);
}

.modern-comment-submit {
  align-self: flex-end;
  background: linear-gradient(135deg, #45B8AC 0%, #3a9b8f 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: var(--font-weight-semibold, 600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Montserrat', sans-serif;
}

.modern-comment-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(69, 184, 172, 0.3);
  color: #fff;
}

.modern-comment-submit:active {
  transform: translateY(0);
}

.modern-comments-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modern-comment-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.modern-comment-item:hover {
  background: #f0f0f0;
  transform: translateX(5px);
}

.comment-avatar {
  flex-shrink: 0;
}

.avatar-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comment-content {
  flex: 1;
  min-width: 0;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author-name {
  font-weight: var(--font-weight-semibold, 600);
  color: #333;
  font-size: var(--font-size-base, 1rem);
}

.author-surname {
  font-weight: var(--font-weight-medium, 500);
  color: #666;
  font-size: var(--font-size-sm, 0.875rem);
}

.comment-time {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #999;
  font-size: var(--font-size-sm, 0.875rem);
}

.comment-time i {
  font-size: 0.875rem;
}

.comment-text {
  color: #555;
  line-height: 1.7;
  font-size: var(--font-size-base, 1rem);
  word-wrap: break-word;
}

.no-comments-message {
  text-align: center;
  padding: 3rem 2rem;
  color: #999;
}

.no-comments-message i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
  display: block;
}

.no-comments-message p {
  font-size: var(--font-size-base, 1rem);
  margin: 0;
}

/* Responsive Comments */
@media (max-width: 768px) {
  .modern-comments-section {
    padding: 1.5rem;
  }
  
  .modern-comment-item {
    flex-direction: column;
    padding: 1rem;
  }
  
  .comment-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .modern-comment-submit {
    width: 100%;
    justify-content: center;
  }
}
