/** Shopify CDN: Minification failed

Line 19:7 Expected ":"
Line 19:9 Expected identifier but found "#000"

**/
.company-books-heading {
  text-align: center;
  margin-bottom: 32px;
}

.company-books-subheading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 24px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
  color; #000
  opacity: 1;
}

.company-books-subheading:last-of-type {
  margin-bottom: 40px;
}
.company-books-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.company-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 2px solid rgba(0,0,0,0.2);
  padding-bottom: 48px;
}

.company-card:last-child {
  border-bottom: none;
}

.company-card__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.company-card__logo {
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

.company-card__caption {
  max-width: 500px;
  margin: -20px auto 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}



.book-expand summary {
  list-style: none;
  cursor: pointer;
}
.book-expand summary::-webkit-details-marker {
  display: none;
}

.book-expand__trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 650px;
  margin: 0 auto;
}

.book-expand__cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  transition: transform 0.2s ease;
}

.book-expand_trigger:hover .book-expand_cover {
  transform: translateY(-2px);
}

.book-expand__label {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 28px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  border: 1.5px solid #FF861D;
  background: #FF861D;
  transform: skewX(-12deg);
  transition: background 0.2s ease, color 0.2s ease;
}

.book-expand__label-open,
.book-expand__label-close {
  display: inline-block;
  transform: skewX(12deg);
}

.book-expand_trigger:hover .book-expand_label,
.book-expand_trigger:active .book-expand_label {
  background: #fff;
  color: #FF861D;
}

.book-expand[open] .book-expand_trigger .book-expand_label {
  background: #fff;
  color: #FF861D;
}

.book-expand__label-close {
  display: none;
}

.book-expand[open] .book-expand__label-open {
  display: none;
}
.book-expand[open] .book-expand__label-close {
  display: inline;
}

.book-expand__content {
  max-width: 1100px;
  margin: 28px auto 0;
  animation: fadeIn 0.25s ease;
}

.book-expand__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.book-expand__highlight-item {
  flex: 1 1 340px;
  max-width: calc(40% - 12px);
}

.book-expand__highlight-heading {
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  word-spacing: 4px;
  text-transform: uppercase;
  margin: 32px auto 20px;
  line-height: 1.6;
  max-width: 700px;
  white-space: normal;
}

.book-expand__highlight-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.book-expand__highlight-caption {
  margin-top: 10px;
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.book-expand__gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.book-expand__gallery img {
  flex: 1 1 260px;
  max-width: calc(20% - 16px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.book-expand__description {
  margin-bottom: 24px;
  line-height: 1.6;
}

.book-expand__videos {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.book-expand__video {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.book-expand__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.book-expand__video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  background: rgba(0,0,0,0.35);
}

.company-books-empty {
  text-align: center;
  opacity: 0.6;
}

@media (max-width: 749px) {
  .book-expand__trigger {
    max-width: 320px;
  }
  .company-card {
    padding-bottom: 36px;
  }

    .book-expand__gallery-item {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .book-expand__highlight-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.book-expand__secondary {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.book-expand__secondary-heading {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 32px 0 20px;
  line-height: 1.6;
}

.book-expand__secondary-cover {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  margin: 0 auto 20px;
}
.book-expand__secondary-caption {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.9;
  margin: -10px auto 20px;
  max-width: 400px;
}
/* NEW: Company Book Heading */
.book-expand__company-heading {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 32px 0 20px;
  line-height: 1.6;
}

/* NEW: Single YouTube video above product blocks */
.book-expand__single-video {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  margin: 32px auto;
  border-radius: 4px;
  overflow: hidden;
}

.book-expand__single-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* ============================================
   Additional Images — Main + Thumbnail Gallery
   ============================================ */

.cb-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cb-gallery__main {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #f4f4f4;
}

.cb-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

.cb-gallery__thumbs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  max-width: 600px;
  width: 100%;
  padding: 4px 2px 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.cb-gallery__thumb {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.7;
  transition: border-color 0.15s ease, opacity 0.15s ease;
}

.cb-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cb-gallery__thumb:hover {
  opacity: 1;
}

.cb-gallery__thumb.is-active {
  border-color: #FF6B00;
  opacity: 1;
}

@media (max-width: 749px) {
  .cb-gallery__main {
    max-width: 100%;
  }
  .cb-gallery__thumbs {
    max-width: 100%;
  }
  .cb-gallery__thumb {
    width: 60px;
    height: 60px;
  }
}
/* ===== Company card container isolation ===== */
.company-card {
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.company-card__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

/* ===== Company logo - fixed, never distorted ===== */
.company-card__logo {
  width: 220px !important;
  height: 220px !important;
  max-width: 100%;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ===== Main gallery image ===== */
.cb-gallery {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.cb-gallery__main {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.cb-gallery__main-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===== Thumbnail scroll row ===== */
.cb-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  gap: 8px;
  box-sizing: border-box;
}

.cb-gallery__thumb {
  width: 80px;
  height: 80px;
  padding: 0;
  border: none;
  background: none;
}

.cb-gallery__thumb img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover;
  display: block;
}

.book-expand_description .book-expand_company-link,
a.book-expand__company-link {
  color: #1a73e8 !important;
  text-decoration: none !important;
  font-size: inherit;
  font-weight: normal;
}

.book-expand__company-link:hover {
  color: #0d47a1;
}

.book-expand__company-name {
  font-size: inherit;
  font-weight: normal;
}

.corporate-nav-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 0 40px;
}

.corporate-nav-btn {
  display: inline-block;
  padding: 10px 28px;
  border: 1.5px solid #FF861D;
  background: #FF861D;
  color: #000;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.corporate-nav-btn:hover {
  background: #fff;
  color: #FF861D;
}

html {
  scroll-behavior: smooth;
}
#corporate-faq-section .collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#corporate-faq-section .collapsible-content.cb-faq-open {
  overflow: visible;
}

.company-books-cta {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  margin: 24px 0 40px;
  flex-wrap: wrap;
}

.cb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px 11px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.cb-btn--faq {
  background: #FF861D;
  color: #000;
  border: 1.5px solid #FF861D;
}
.cb-btn--faq:hover {
  background: #fff;
  color: #FF861D;
}

.cb-btn--enquire {
  background: #FF861D;
  color: #000;
  border: 1.5px solid #FF861D;
}
.cb-btn--enquire:hover {
  background: #fff;
  color: #FF861D;
}

.cb-btn--whatsapp {
  background: #25D366;
  color: #000;
  border: 1.5px solid #25D366;
}
.cb-btn--whatsapp:hover {
  background: #fff;
  color: #25D366;
}

@media (max-width: 749px) {
  .company-books-cta {
    gap: 12px;
  }
  .cb-btn {
    padding: 12px 20px;
    font-size: 12px;
  }
}

.back-to-top-btn {
  position: fixed;
  bottom: 100px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FF861D;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 99999;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: #FF861D;
}

@media (max-width: 749px) {
  .back-to-top-btn {
    bottom: 90px;
    left: 16px;
    width: 44px;
    height: 44px;
  }
}
.company-books-section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 24px 0 24px;
  padding-top: 0px;
}

.company-books-grid > .company-books-section-title:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}