/* Product Detail Page - Premium Design */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #066cfa;
  --secondary-color: #1a1a2e;
  --accent-color: #ff4f70;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --dark-bg: #f8f9fa;
  --light-bg: #ffffff;
  --border-color: #e9ecef;
  --text-color: #212529;
  --text-muted: #6c757d;
  --text-light: #adb5bd;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --primary-font: 'Poppins', sans-serif;
}

/* ====== GENERAL STYLES ====== */
body {
  font-family: var(--primary-font);
  color: var(--text-color);
  background-color: #fbfbfd;
  line-height: 1.6;
}

.product-detail-section {
  padding: 0 0 50px 0;
  background-color: #fbfbfd;
}

/* ====== BREADCRUMB STYLES ====== */
.breadcrumb-section {
  background-color: transparent;
  padding: 15px 0;
  margin-bottom: 10px;
  border-bottom: none;
}

.breadcrumb {
  font-size: 13px;
  font-weight: 500;
}

.breadcrumb-item a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-light);
}

/* ====== PRODUCT IMAGES GALLERY ====== */
.product-main-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  background-color: var(--light-bg);
}
.product-main-image .main-image-container {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.product-detail-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--light-bg);
  transition: transform 0.5s ease;
}

.main-image-container:hover .product-detail-img {
  transform: scale(1.03);
}

.product-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.thumbnail-item {
  cursor: pointer;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 85px;
  height: 85px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.thumbnail-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.thumbnail-item.active {
  border-color: var(--primary-color);
}

.discount-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--danger-color);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  z-index: 10;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  display: none; /* Hide % off badge */
}

.btn-favorite {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-favorite:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn-favorite.favorited {
  color: var(--danger-color);
}

/* ====== PRODUCT INFO STYLES ====== */
.product-info {
  padding-left: 20px;
}

.product-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.product-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 10px; /* Reduced spacing */
}

.price-section {
  margin-bottom: 20px;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 22px;
  font-weight: 500;
}

.current-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.discount-percentage {
  display: none; /* Hide % off badge */
}

/* Color and Size Selection */
.color-option,
.size-option {
  position: relative;
}

.color-radio,
.size-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
  /* Completely hide the input but keep it focusable */
}

.color-label,
.size-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 40px;
  padding: 0 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  background-color: white;
  box-shadow: var(--shadow-sm);
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  user-select: none;
}

.color-label:hover,
.size-label:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.color-label.selected,
.size-label.selected {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 5px 10px rgba(6, 108, 250, 0.2);
}

/* Variations Section */
.variation-selection {
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  position: relative;
}

.variation-selection .form-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
}

/* add padding-bottom: 20px; border-bottom: 1px solid var(--border-color); to variation-selection last div */
.bpd-bottom {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

/* Loading spinner for variation changes */
.variation-selection .spinner-border {
  margin-left: 5px;
  color: var(--primary-color);
  width: 18px;
  height: 18px;
}

.size-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 40px;
  padding: 0 15px;
  border-radius: 20px;
  background-color: white;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-color);
}

.size-label:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-color);
}

.size-label.selected {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 5px 10px rgba(6, 108, 250, 0.2);
}

/* Quantity selector */
.quantity-section {
  margin-bottom: 30px;
}
.quantity-section .section-heading {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
}

.custom-quantity-input {
  display: inline-flex;
  align-items: center;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.custom-quantity-input:hover {
  box-shadow: var(--shadow-md);
}

.quantity-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-color);
}

.quantity-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.quantity-value {
  width: 50px;
  border: none;
  height: 45px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  background: transparent;
}

.stock-info {
  display: flex;
  align-items: center;
  margin-left: 15px;
  font-size: 14px;
  font-weight: 500;
}

.stock-info.in-stock {
  color: var(--success-color);
}

.stock-info.low-stock {
  color: var(--warning-color);
}

.stock-info.out-of-stock {
  color: var(--danger-color);
}

.stock-info i {
  margin-right: 6px;
}

/* Action buttons */
.action-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.btn-add-cart,
.btn-buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 50px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 16px;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-sm);
}

.btn-add-cart {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-add-cart:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(6, 108, 250, 0.2);
}

.btn-buy-now {
  background-color: var(--primary-color);
  color: white;
}

.btn-buy-now:hover {
  background-color: #0559cc;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(6, 108, 250, 0.3);
}

.btn-add-cart i,
.btn-buy-now i {
  margin-right: 8px;
  font-size: 18px;
}

/* Shipping & Returns Row */
.shipping-returns-row {
  display: flex;
  margin-bottom: 25px;
}

.shipping-info,
.returns-info {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: #f8f9fa;
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.3s ease;
  margin-right: 15px;
}

.shipping-info i,
.returns-info i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 16px;
}

/* Secure Shopping */
.secure-checkout {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.secure-checkout i {
  margin-right: 8px;
  color: var(--success-color);
}

/* Product Benefits Section */
.product-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
}

.benefit-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: #f8f9fa;
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.benefit-item i {
  color: var(--primary-color);
  margin-right: 8px;
}

/* Product Tabs Section */
.product-tabs {
  margin-top: 40px;
}

.nav-tabs {
  border-bottom: none;
  gap: 10px;
  margin-bottom: 20px;
}

.nav-tabs .nav-link {
  border: none;
  background-color: #f8f9fa;
  color: var(--text-muted);
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(6, 108, 250, 0.05);
}

.nav-tabs .nav-link.active {
  color: white;
  background-color: var(--primary-color);
  box-shadow: 0 5px 10px rgba(6, 108, 250, 0.15);
}

.tab-content {
  padding: 30px;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Reviews Section */
.reviews-section {
  margin-top: 20px;
}

.reviews-summary {
 
  margin-bottom: 30px;
  padding: 25px;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.average-rating-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}

.average-rating {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.rating-stars {
  margin: 10px 0;
  color: var(--warning-color);
  font-size: 18px;
}

.rating-count {
  font-size: 14px;
  color: var(--text-muted);
}

.rating-bars {
  flex-grow: 1;
  max-width: 400px;
}

.rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.rating-label {
  width: 30px;
  margin-right: 10px;
  font-weight: 500;
  color: var(--text-muted);
}

.rating-progress {
  flex-grow: 1;
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 10px;
}

.rating-progress-bar {
  height: 100%;
  background-color: var(--warning-color);
}

.rating-percent {
  width: 40px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
}

.review-list {
  margin-top: 30px;
}

.review-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.reviewer-info {
  display: flex;
  align-items: center;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  box-shadow: var(--shadow-sm);
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.review-date {
  font-size: 13px;
  color: var(--text-muted);
}

.review-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.review-stars {
  color: var(--warning-color);
  font-size: 16px;
  margin-bottom: 5px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.verified-badge i {
  font-size: 10px;
  margin-right: 4px;
}

.review-content {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
}

.review-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.review-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-reviews {
  background-color: #f8f9fa;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.no-reviews-icon {
  font-size: 48px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.no-reviews-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.btn-write-review {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.btn-write-review:hover {
  background-color: #0559cc;
  box-shadow: 0 5px 15px rgba(6, 108, 250, 0.2);
  transform: translateY(-2px);
}

.btn-write-review i {
  margin-right: 8px;
}

/* Tab Panel - Description */
.description-tab-content {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Related Products Section - Premium Design */
.related-products {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid #eaeaea;
}

.related-products .section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  color: #212121;
  position: relative;
  padding-bottom: 12px;
}

.related-products .section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

.product-image {
  position: relative;
  overflow: hidden;
  padding-top: 100%; /* 1:1 aspect ratio */
  background-color: #f9f9f9;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.variation-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #212121;
  color: #fff;
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* Add a sale badge */
.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #212121;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.product-name:hover {
  color: var(--primary-color);
}

.product-description {
  font-size: 0.85rem;
  color: #757575;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.product-rating {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: #757575;
}

.rating-stars {
  color: #ffc107;
  margin-right: 0.35rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  position: relative;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-current,
.price-range {
  font-weight: 700;
  color: #212121;
  font-size: 1.1rem;
}

.price-range {
  color: var(--primary-color);
}

.price-original {
  font-size: 0.85rem;
  color: #9e9e9e;
  text-decoration: line-through;
  margin-top: 0.2rem;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-add-to-cart,
.btn-view-options {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-add-to-cart {
  background-color: var(--primary-color);
}

.btn-view-options {
  background-color: #424242;
  text-decoration: none;
}

.btn-add-to-cart:hover,
.btn-view-options:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.btn-add-to-cart:hover {
  background-color: #0559cc;
}

.btn-view-options:hover {
  background-color: #212121;
}

.btn-add-to-cart:after,
.btn-view-options:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
}

.btn-add-to-cart:hover:after,
.btn-view-options:hover:after {
  transform: translate(-50%, -50%) scale(2);
  opacity: 0;
}

/* Quick shop overlay on hover */
.quick-shop-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0.8rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.product-card:hover .quick-shop-overlay {
  transform: translateY(0);
}

.btn-quick-shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  width: 100%;
}

.btn-quick-shop:hover {
  background-color: #0559cc;
}

.btn-quick-shop i {
  margin-right: 0.5rem;
}

/* Product card hover state animations */
.product-card .product-body {
  transition: transform 0.3s ease;
}

.product-card:hover .product-body {
  transform: translateY(-5px);
}

/* Social Share Buttons */
.share-section {
  margin: 20px 0;
}

.share-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}

.social-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.social-share-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: white;
}

.social-share-btn.facebook {
  background-color: #3b5998;
}

.social-share-btn.twitter {
  background-color: #1da1f2;
}

.social-share-btn.linkedin {
  background-color: #0077b5;
}

.social-share-btn.pinterest {
  background-color: #bd081c;
}

.social-share-btn.whatsapp {
  background-color: #25d366;
}

.social-share-btn.telegram {
  background-color: #0088cc;
}

.social-share-btn.email {
  background-color: #777;
}

.social-share-btn.copy-link {
  background-color: #424242;
}

.copy-link-message {
  font-size: 13px;
  color: var(--success-color);
  background-color: rgba(40, 167, 69, 0.1);
  padding: 6px 12px;
  border-radius: 30px;
  display: inline-block;
}

/* Tab Panel - Description */
