:root {
  --black: #000;
  --dark-gray: #111;
  --light-gray: #f8f9fa;
  --success-green: #00d045;
  --accent-gold: #f39c12;
  --error-red: #dc3545;
  /* Clean colors */
  --bg-white: #ffffff;
  --bg-light: #f5f7fa;
  --text-primary: #2c3e50;
  --text-secondary: #7f8c8d;
  --border-light: #e1e8ed;
}

/* Card Style Breadcrumb */
.breadcrumb-card {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 15px;
  position: relative;
  top: -100px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-link {
  color: var(--primary-red);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-link:hover {
  background: var(--light-red);
  color: var(--dark-red);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(212, 0, 26, 0.2);
}

.breadcrumb-current {
  color: var(--dark-gray);
  padding: 8px 14px;
  font-weight: 600;
  background: var(--light-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-separator {
  color: #999;
  font-size: 14px;
  margin: 0 4px;
}

.breadcrumb-icon {
  font-size: 14px;
}

/* Multiple card examples */


.demo-title {
  color: var(--dark-gray);
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Variant: Compact card */
.breadcrumb-card-compact {
  padding: 16px 20px;
  font-size: 14px;
}

.breadcrumb-card-compact .breadcrumb-link,
.breadcrumb-card-compact .breadcrumb-current {
  padding: 6px 12px;
}

/* Variant: Elevated card */
.breadcrumb-card-elevated {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .breadcrumb-card {
    padding: 16px 18px;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .breadcrumb-link,
  .breadcrumb-current {
    padding: 6px 10px;
    font-size: 13px;
  }

  .breadcrumb-icon {
    font-size: 12px;
  }
}

/* Container */
.prodcut-views {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  top: -100px;
}

/* Main Product Section - 70/30 */
.product-main {
  display: grid;
  grid-template-columns: 70% 30%;
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

/* Image Gallery - Left Side */
.gallery-section {
  padding: 40px;
  background: var(--bg-light);
}

.main-image-container {
  position: relative;
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: zoom-in;
}

.badge-hot {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-red);
  color: white;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}

.main-image {
  width: 100%;
  height: 500px;
  object-fit: contain;
  background: var(--bg-white);
}

.image-thumbs {
  position: relative;
  padding: 0 35px;
}

.swiper {
  width: 100%;
  height: 80px;
}

.swiper-slide {
  width: 80px !important;
  height: 80px;
  cursor: pointer;
}

.thumb {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumb.active {
  border-color: var(--primary-red);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb:hover {
  opacity: 0.8;
  border-color: var(--primary-red);
}

/* Swiper Navigation */
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: 30px;
  height: 30px;
  background: var(--bg-white);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
}

.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  font-size: 12px;
  font-weight: bold;
}

.swiper-button-disabled {
  opacity: 0.3;
}

/* Zoom Icon */
.zoom-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

/* Image Count */
.image-count {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 1;
}

/* Info Section - Right Side */
.info-section {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.product-code {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 10px;
}

.product-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.product-short-desc {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
}

/* Price Box */
.price-box {
  margin-bottom: 30px;
}

.price-original {
  font-size: 18px;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-bottom: 5px;
}

.price-current {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 5px;
}

.price-save {
  color: var(--success-green);
  font-size: 14px;
  font-weight: 600;
}

.vat-text {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 10px;
}

/* Buy Button */
.buy-button {
  width: 100%;
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.buy-button:hover {
  background: var(--dark-red);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 0, 26, 0.3);
}

/* Trust Icons */
.trust-icons {
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
}

.trust-item i {
  font-size: 20px;
  color: var(--primary-red);
  margin-bottom: 5px;
  display: block;
}

/* Full Width Description Section */
.description-section {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-light);
}

.description-content {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.8;
}

.description-content p {
  margin-bottom: 20px;
}

.description-content p:last-child {
  margin-bottom: 0;
}

/* Highlight Box */
.highlight-box {
  background: var(--light-red);
  border-left: 4px solid var(--primary-red);
  padding: 20px;
  margin: 30px 0;
  border-radius: 4px;
}

.highlight-box h3 {
  color: var(--primary-red);
  margin-bottom: 10px;
  font-size: 18px;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1500;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg-white);
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 30px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-light);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--light-red);
  color: var(--primary-red);
}

.modal-body {
  padding: 30px;
}

/* Order Summary */
.order-summary {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.order-image {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}

.order-info {
  flex: 1;
}

.order-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.order-code {
  font-size: 14px;
  color: var(--text-secondary);
}

.order-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-red);
}

/* Promo Code Section */
.promo-section {
  margin-bottom: 25px;
}

.promo-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 16px;
}

.promo-input-group {
  display: flex;
  gap: 10px;
}

.promo-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--border-light);
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
  color: var(--text-primary);
}

.promo-input:focus {
  outline: none;
  border-color: var(--primary-red);
}

.promo-apply {
  padding: 12px 24px;
  background: var(--text-primary);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-apply:hover {
  background: var(--dark-gray);
}

.promo-cancel {
  padding: 12px 24px;
  background: var(--error-red);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}

.promo-cancel:hover {
  background: #c82333;
}

.promo-cancel.show {
  display: block;
}

.promo-message {
  margin-top: 10px;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  display: none;
}

.promo-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}



.promo-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}



/* Price Summary */
.price-summary {
  border-top: 2px solid var(--border-light);
  padding-top: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-primary);
}

.summary-row.discount {
  color: var(--success-green);
}

.summary-row.total {
  font-size: 20px;
  font-weight: 700;
  border-top: 2px solid var(--border-light);
  padding-top: 15px;
  margin-top: 10px;
}

.vat-notice {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 10px;
}

.confirm-button {
  width: 100%;
  background: var(--success-green);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 25px;
  transition: all 0.3s ease;
}

.confirm-button:hover {
  background: #00a838;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 208, 69, 0.3);
}

/* Fancybox Custom Styles */
.fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, 0.9);
}

.fancybox__slide {
  padding: 20px;
}

.fancybox__caption {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 968px) {
  .product-main {
    grid-template-columns: 1fr;
  }

  .gallery-section {
    padding: 30px;
  }

  .main-image {
    height: 400px;
  }

  .product-name {
    font-size: 24px;
  }

  .price-current {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 20px 15px;
  }

  .gallery-section,
  .info-section,
  .description-section {
    padding: 25px;
  }

  .image-thumbs {
    gap: 8px;
  }

  .thumb {
    width: 60px;
    height: 60px;
  }

  .swiper-slide {
    width: 60px !important;
    height: 60px;
  }

  .image-thumbs {
    padding: 0 25px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 25px;
    height: 25px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 10px;
  }

  .modal-content {
    margin: 0 10px;
  }
}
