/* ============================================
   RAFFIA MASTERBATCHES PAGE STYLES
   MasterPlast - Industrial Polymer Solutions
   ============================================ */

/* --- Page Hero Adjustments --- */
/*.page-hero {
  background: linear-gradient(135deg, #00215E 0%, #0a3570 50%, #d00000 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 15px;
}

.page-hero .breadcrumb-nav a,
.page-hero .breadcrumb-nav .sep,
.page-hero .breadcrumb-nav .current {
  color: rgba(255, 255, 255, 0.85);
}

/* --- Raffia Intro Section --- */
.raffia-intro {
  background: #fff;
  padding-bottom: 40px;
}

.raffia-intro .section-label {
  display: inline-flex;
  color: var(--tx-primary-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 8px;
}

.raffia-intro .section-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  /*width: 50px;*/
  height: 3px;
  background: var(--tx-primary-color);
  border-radius: 2px;
}

/* --- Product Category Section --- */
.product-category-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

.product-category-section.bg-light {
  background-color: #f8f9fa !important;
}

/* Category Header */
.category-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.category-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--tx-primary-color) 0%, #b00000 100%);
  box-shadow: 0 10px 30px rgba(208, 0, 0, 0.25);
}

.category-icon i {
  font-size: 32px;
  color: #fff;
}

.category-icon.modifier-icon {
  background: linear-gradient(135deg, #00215E 0%, #0047ab 100%);
  box-shadow: 0 10px 30px rgba(0, 33, 94, 0.25);
}

.category-icon.white-icon {
  background: linear-gradient(135deg, #4793AF 0%, #2d7a96 100%);
  box-shadow: 0 10px 30px rgba(71, 147, 175, 0.25);
}

.category-title-wrap {
  flex: 1;
}

.category-number {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--tx-primary-color);
  background: rgba(208, 0, 0, 0.08);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.category-title-wrap h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #212529;
  margin-bottom: 8px;
}

.category-title-wrap p {
  color: #000000;
  font-size: 16px;
  margin-bottom: 0;
  max-width: 600px;
}

/* --- Product Card --- */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Product Badge */
.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #d00000 0%, #b00000 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(208, 0, 0, 0.3);
}

/* Product Card Header */
.product-card-header {
  padding: 35px 30px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(208, 0, 0, 0.03) 0%, transparent 100%);
}

.product-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.product-card:hover .product-icon {
  transform: scale(1.1) rotate(-5deg);
}

.product-icon i {
  font-size: 28px;
  color: #fff;
}

/* Icon Colors */
.gold-icon {
  background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
}

.goldplus-icon {
  background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.35);
}

.natura-icon {
  background: linear-gradient(135deg, #48c774 0%, #3aad5f 100%);
  box-shadow: 0 8px 25px rgba(72, 199, 116, 0.35);
}

.alpha-icon {
  background: linear-gradient(135deg, #00215E 0%, #0047ab 100%);
  box-shadow: 0 8px 25px rgba(0, 33, 94, 0.35);
}

.alphaob-icon {
  background: linear-gradient(135deg, #6c5ce7 0%, #5b4cdb 100%);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.35);
}

.magicob-icon {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.35);
}

.crystal-icon {
  background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.35);
}

.ppa-icon {
  background: linear-gradient(135deg, #00215E 0%, #0047ab 100%);
  box-shadow: 0 8px 25px rgba(0, 33, 94, 0.35);
}

.uv-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.25);
}

.sunguard-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.sunguardfg-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.sunguardm-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.sunguardgh-icon {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.35);
}

.ppgolduhf-icon {
  background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
}

.albus-icon {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  box-shadow: 0 8px 25px rgba(203, 213, 225, 0.4);
}

.albus-icon i {
  color: #475569;
}

.product-card-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #212529;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

/* Product Card Body */
.product-card-body {
  padding: 0 30px;
  flex: 1;
}

.product-card-body>p {
  color: #000000;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Product Features */
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.product-features li {
  /*display: flex;
  align-items: center;
  gap: 10px;*/
  padding: 8px 0;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li i {
  color: var(--tx-primary-color);
  font-size: 14px;
  flex-shrink: 0;
}

/* Product Card Footer */
.product-card-footer {
  padding: 0 30px 30px;
  margin-top: auto;
}

/* Download Button */
.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #212529;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.download-btn:hover {
  background: linear-gradient(135deg, var(--tx-primary-color) 0%, #b00000 100%);
  color: #fff;
  text-decoration: none;
  border-color: var(--tx-primary-color);
  box-shadow: 0 8px 25px rgba(208, 0, 0, 0.25);
}

.download-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.download-btn:hover i {
  transform: translateY(2px);
}

/* Featured Card (ALBUS) */
.featured-card {
  border: 2px solid rgba(208, 0, 0, 0.1);
}

.featured-card .product-card-header {
  background: linear-gradient(180deg, rgba(208, 0, 0, 0.05) 0%, transparent 100%);
}

/* --- Raffia CTA Section --- */
.raffia-cta {
  background: linear-gradient(135deg, #00215E 0%, #0a3570 50%, #d00000 100%);
  position: relative;
  overflow: hidden;
}

.raffia-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.raffia-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 15px;
}

.raffia-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 0;
  max-width: 600px;
}

/*.raffia-cta .theme-btn.btn-style-three {
  background-color: #fff;
  color: var(--tx-primary-color);
}

.raffia-cta .theme-btn.btn-style-three b {
  background-color: var(--tx-primary-color);
}

.raffia-cta .theme-btn.btn-style-three:hover b {
  background-color: var(--tx-navy-blue);
}

.raffia-cta .theme-btn.btn-style-three .btn-wrap .text-one,
.raffia-cta .theme-btn.btn-style-three .btn-wrap .text-two {
  color: var(--tx-primary-color);
}*/

.raffia-cta .theme-btn.btn-style-three:hover .btn-wrap .text-one,
.raffia-cta .theme-btn.btn-style-three:hover .btn-wrap .text-two {
  color: #fff;
}

.raffia-cta .theme-btn.btn-style-three:hover .btn-wrap .text-one i,
.raffia-cta .theme-btn.btn-style-three:hover .btn-wrap .text-two i {
  color: #fff;
}

.raffia-cta .theme-btn.btn-style-three:hover {
  background-color: var(--tx-navy-blue);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .category-title-wrap p {
    margin: 0 auto;
  }

  .product-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .product-category-section {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .category-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .product-card-header {
    padding: 25px 20px 15px;
  }

  .product-card-body {
    padding: 0 20px;
  }

  .product-card-footer {
    padding: 0 20px 20px;
  }
}

/* Trademark superscript without extra gap */
.tm-sup {
  font-size: 0.6em;
  vertical-align: super;
  line-height: 0;
  margin-left: 0;
  padding-left: 0;
}