/* ============================================
   PACKISTRY — POLICY PAGES + EXTRA SECTIONS
   ============================================ */

/* ==========================================
   REQUEST A FREE SAMPLE SECTION
   ========================================== */
.free-sample-section {
  background: #0F2640;
  padding: 52px 0;
}

.free-sample-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.free-sample-content .fs-gold-line {
  width: 44px;
  height: 3px;
  background: #C9A84C;
  border-radius: 2px;
  margin-bottom: 18px;
}

.free-sample-content h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.free-sample-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 620px;
}

.btn-sample {
  background: #C9A84C;
  color: #0F2640;
  border: 2px solid #C9A84C;
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-sample:hover {
  background: #A8862E;
  border-color: #A8862E;
  color: #ffffff;
}

/* ==========================================
   PRODUCT DETAIL — DETAILS & SPECS TABS
   ========================================== */
.prod-tabs-section {
  background: var(--bg-white);
  padding: var(--sp-2xl) 0 var(--sp-3xl);
  border-top: 1px solid var(--color-gray-200);
}

/* Main 2-column layout */
.prod-main-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-2xl);
  align-items: start;
}

/* LEFT: Tab Nav */
.prod-tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--color-gray-200);
  margin-bottom: var(--sp-lg);
  gap: 0;
}

.prod-tab-btn {
  padding: 13px 32px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prod-tab-btn:hover { color: var(--text-primary); }

.prod-tab-btn.active {
  color: var(--text-primary);
  font-weight: 600;
  border-bottom-color: var(--color-navy);
}

/* Tab Content */
.prod-tab-content { display: none; }
.prod-tab-content.active {
  display: block;
  animation: tabFade 0.25s ease;
}

@keyframes tabFade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.prod-content-h {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  margin-top: 0;
  font-family: var(--font-sans);
  line-height: 1.4;
}

.prod-content-h + .prod-content-h { margin-top: var(--sp-lg); }

.prod-content-p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-gray-200);
}

.specs-table tr { border-bottom: 1px solid var(--color-gray-200); }
.specs-table tr:last-child { border-bottom: none; }

.specs-table td {
  padding: 14px 18px;
  font-size: 14px;
  vertical-align: top;
  line-height: 1.6;
  color: var(--text-secondary);
}

.specs-table .spec-label {
  font-weight: 600;
  color: var(--text-primary);
  width: 150px;
  background: var(--bg-light);
}

/* RIGHT: Image Slider */
.prod-right {
  position: sticky;
  top: 60px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.prod-img-slider {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f9f9f9;
}

.prod-img-slides { position: relative; }

.prod-img-slide {
  display: none;
}

.prod-img-slide.active {
  display: block;
  animation: tabFade 0.3s ease;
}

.prod-img-slide img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: #f9f9f9;
  display: block;
}

/* Slider Dots */
.prod-slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 14px 0 12px;
  background: #f9f9f9;
  border-top: 1px solid var(--color-gray-200);
}

.prod-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-gray-300);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
}

.prod-slider-dot.active {
  background: var(--color-gold);
  transform: scale(1.2);
}

/* Social Share Buttons */
.prod-social-row {
  display: flex;
  gap: 8px;
}

.prod-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 0;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  color: #ffffff;
}

.prod-fb {
  background: #1877F2;
}

.prod-fb:hover {
  background: #1565d8;
  color: #ffffff;
}

.prod-tw {
  background: #1DA1F2;
}

.prod-tw:hover {
  background: #0d8ddb;
  color: #ffffff;
}

/* ==========================================
   POLICY PAGES (Privacy + Terms)
   ========================================== */
.policy-section {
  background: var(--bg-white);
  padding: var(--sp-2xl) 0 var(--sp-3xl);
}

.policy-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-2xl);
  align-items: start;
}

@media (max-width: 767px) {
  .free-sample-content { padding-left: 16px; padding-right: 16px; }
  .free-sample-content h2 { font-size: 25px; }
  .prod-main-layout, .policy-layout { grid-template-columns: 1fr; gap: 28px; }
  .prod-right { position: static; order: -1; }
  .prod-tabs-nav { overflow-x: auto; }
  .prod-tab-btn { padding: 12px 18px; white-space: nowrap; }
  .prod-img-slide img { height: 260px; }
  .specs-table { display: block; overflow-x: auto; }
  .policy-layout { padding-left: 16px; padding-right: 16px; }
}

/* Breadcrumb on policy pages */
.policy-section .breadcrumb {
  color: var(--text-muted);
  font-size: 13px;
}

.policy-section .breadcrumb a {
  color: var(--text-muted);
}

.policy-section .breadcrumb a:hover {
  color: var(--color-gold);
}

.policy-section .breadcrumb span {
  color: var(--color-gold);
  margin: 0 6px;
}

/* Main Title */
.policy-main-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-md);
  border-bottom: 2px solid var(--color-gray-200);
}

/* Policy Blocks */
.policy-block {
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--color-gray-200);
}

.policy-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.policy-block h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-md);
  font-family: var(--font-sans);
}

.policy-block p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

.policy-block p:last-child { margin-bottom: 0; }

.policy-block strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Policy List */
.policy-list {
  list-style: disc;
  padding-left: 24px;
  margin-top: var(--sp-sm);
}

.policy-list li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* Sidebar */
.policy-sidebar {
  position: sticky;
  top: 60px;
}
