/*
 Theme Name: Hello Elementor Child - Know the Rules
 Template: hello-elementor
 Version: 1.0.2
 Description: Child theme for Know the Rules book series website
 Author: Know the Rules
 Text Domain: hello-elementor-child
*/
/*
 * @ Develop By Fattain Naime
 * @ Date: 2026-03-10
 * @ Version: 1.0.2
 * @ https://iamnaime.info.bd
 */

/* === Design Tokens === */
:root {
  --brand-primary: #1A56DB;
  --brand-primary-hover: #1648C0;
  --brand-secondary: #0A1628;
  --brand-accent: #F59E0B;
  --brand-accent-hover: #D97706;
  --brand-accent-2: #10B981;
  --text-primary: #111827;
  --text-secondary: #6B7280;
  --text-light: #F9FAFB;
  --bg-light: #F3F4F6;
  --bg-white: #FFFFFF;
  --border-color: #E5E7EB;
}

/* === Base === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* === Custom Button Styles === */
.elementor-button.btn-primary,
.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-hover) 100%) !important;
  color: #ffffff !important;
  border-radius: 8px;
  padding: 14px 32px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
  border: none;
  text-decoration: none;
  display: inline-block;
}

.elementor-button.btn-primary:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 86, 219, 0.4);
}

.elementor-button.btn-amazon,
.amazon-buy-btn {
  background: linear-gradient(135deg, #FF9900 0%, #E88800 100%) !important;
  color: #000000 !important;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  margin-top: 10px;
}

.elementor-button.btn-amazon:hover,
.amazon-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.35);
}

/* === Book Cards === */
.book-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.book-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* === Country Badge === */
.country-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* === Hero Section === */
.hero-section {
  background: linear-gradient(135deg, #0A1628 0%, #1B2D4F 50%, #0A1628 100%);
  position: relative;
  overflow: hidden;
}

/* === Section Spacing === */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* === Testimonial Cards === */
.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--brand-accent);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

/* === Trust Badges === */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

/* === WooCommerce Customizations === */
.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-result-count {
  margin-bottom: 24px;
}

.woocommerce ul.products li.product .button {
  background: var(--brand-primary) !important;
  color: #fff !important;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
  background: var(--brand-primary-hover) !important;
  transform: translateY(-2px);
}

.woocommerce ul.products li.product .price {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 18px;
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 32px 0;
}

/* Single Product Amazon Button */
.single-product .amazon-buy-btn {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
}

/* === Bundle Offer Section === */
.bundle-section {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-hover) 100%);
  color: var(--text-primary);
  border-radius: 16px;
  padding: 48px;
}

.bundle-section .original-price {
  text-decoration: line-through;
  opacity: 0.7;
  font-size: 20px;
}

.bundle-section .sale-price {
  font-size: 36px;
  font-weight: 800;
}

/* === Newsletter Section === */
.newsletter-section {
  background: var(--brand-secondary);
}

.newsletter-section input[type="email"] {
  padding: 14px 24px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  width: 100%;
  max-width: 400px;
}

.newsletter-section input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* === Star Rating === */
.star-rating {
  color: var(--brand-accent);
  font-size: 18px;
  letter-spacing: 2px;
}

/* === Header === */
.ktr-header {
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.ktr-header--scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.ktr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ktr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.ktr-header__logo {
  text-decoration: none;
}

.ktr-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--brand-secondary);
}

.ktr-logo strong {
  color: var(--brand-accent);
  font-weight: 800;
}

.ktr-logo--light {
  color: rgba(255, 255, 255, 0.9);
}

.ktr-logo--light strong {
  color: var(--brand-accent);
}

.ktr-header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ktr-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.ktr-nav-list li a {
  display: block;
  padding: 8px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.ktr-nav-list li a:hover,
.ktr-nav-list li.current-menu-item a {
  color: var(--brand-primary);
  background: rgba(26, 86, 219, 0.06);
}

.ktr-header__actions {
  margin-left: 16px;
}

.ktr-header__cart {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background: var(--bg-light);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 16px;
  transition: all 0.2s ease;
}

.ktr-header__cart:hover {
  background: var(--brand-primary);
  color: #fff;
}

.ktr-header__cart-count {
  background: var(--brand-accent);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.ktr-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.ktr-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* === Footer === */
.ktr-footer {
  background: var(--brand-secondary);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.ktr-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ktr-footer__logo {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

.ktr-footer__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 20px;
}

.ktr-footer__social {
  display: flex;
  gap: 12px;
}

.ktr-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.ktr-social-icon:hover {
  background: var(--brand-primary);
  color: #fff;
}

.ktr-footer__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}

.ktr-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ktr-footer__links li {
  margin-bottom: 10px;
}

.ktr-footer__links li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.ktr-footer__links li a:hover {
  color: var(--brand-accent);
}

.ktr-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 14px;
}

.ktr-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
}

.ktr-footer__amazon {
  color: var(--brand-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.ktr-footer__amazon:hover {
  opacity: 0.8;
}

/* === Main Content === */
.ktr-main {
  min-height: 60vh;
}

/* === WooCommerce Product Cards (Elementor) === */
.woocommerce ul.products li.product {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  background: #fff;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.woocommerce ul.products li.product a img {
  border-radius: 0;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .section-title {
    font-size: 30px;
  }

  .ktr-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .ktr-header__toggle {
    display: flex;
  }

  .ktr-header__nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-color);
  }

  .ktr-header__nav--open {
    display: flex;
  }

  .ktr-nav-list {
    flex-direction: column;
    width: 100%;
  }

  .ktr-nav-list li a {
    padding: 12px 16px;
  }

  .ktr-header__actions {
    margin-left: 0;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
    width: 100%;
  }

  .ktr-footer__grid {
    grid-template-columns: 1fr;
  }

  .ktr-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  .hero-heading {
    font-size: 28px;
  }
}

/* ═══════════════════════════════════════
   EXIT-INTENT POPUP
   ═══════════════════════════════════════ */
.ktr-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.75);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: ktrFadeIn 0.3s ease;
  backdrop-filter: blur(4px);
}

@keyframes ktrFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes ktrSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ktr-popup {
  background: #fff;
  border-radius: 20px;
  max-width: 580px;
  width: 100%;
  position: relative;
  animation: ktrSlideUp 0.4s ease 0.1s both;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.ktr-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #F3F4F6;
  color: #6B7280;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
  line-height: 1;
}

.ktr-popup__close:hover {
  background: #E5E7EB;
  color: #111827;
}

.ktr-popup__inner {
  padding: 40px 36px 36px;
}

.ktr-popup__badge {
  display: inline-block;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.ktr-popup__title {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 12px;
  line-height: 1.3;
}

.ktr-popup__title span {
  color: var(--brand-primary);
}

.ktr-popup__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 20px;
}

.ktr-popup__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.ktr-popup__benefits li {
  font-size: 14px;
  color: #374151;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ktr-popup__benefits li::before {
  content: none;
}

.ktr-popup__form {
  margin: 0;
}

.ktr-popup__form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.ktr-popup__input {
  flex: 1;
  padding: 13px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.ktr-popup__input:focus {
  border-color: var(--brand-primary);
}

.ktr-popup__submit {
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-hover));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
}

.ktr-popup__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 86, 219, 0.4);
}

.ktr-popup__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.ktr-popup__privacy {
  font-size: 12px;
  color: #9CA3AF;
  text-align: center;
  margin: 12px 0 0;
}

.ktr-popup__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #F3F4F6;
}

.ktr-popup__avatars {
  display: flex;
}

.ktr-popup__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: -6px;
  border: 2px solid #fff;
}

.ktr-popup__proof-text {
  font-size: 13px;
  color: var(--text-secondary);
}

.ktr-popup__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  text-align: center;
  min-height: 300px;
}

.ktr-popup__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ktr-popup__success h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.ktr-popup__success p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0 0 24px;
  max-width: 380px;
}

/* ═══════════════════════════════════════
   STICKY FOOTER CTA BAR
   ═══════════════════════════════════════ */
.ktr-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #1B2D4F 100%);
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ktr-sticky-cta--visible {
  transform: translateY(0);
}

.ktr-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}

.ktr-sticky-cta__content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  flex: 1;
}

.ktr-sticky-cta__emoji {
  font-size: 24px;
}

.ktr-sticky-cta__content strong {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.ktr-sticky-cta__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 4px;
}

.ktr-sticky-cta__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ktr-sticky-cta__form {
  display: flex;
  gap: 8px;
}

.ktr-sticky-cta__input {
  padding: 10px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  width: 220px;
  outline: none;
  transition: border-color 0.2s;
}

.ktr-sticky-cta__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.ktr-sticky-cta__input:focus {
  border-color: var(--brand-accent);
}

.ktr-sticky-cta__btn {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-hover));
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.ktr-sticky-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.ktr-sticky-cta__dismiss {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
  line-height: 1;
}

.ktr-sticky-cta__dismiss:hover {
  color: #fff;
}

/* Sticky CTA responsive */
@media (max-width: 768px) {
  .ktr-sticky-cta__inner {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 12px;
    gap: 8px;
    justify-content: center;
  }

  .ktr-sticky-cta__content {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .ktr-sticky-cta__text {
    display: none;
  }

  /* Keep form row (input + button on same line) */
  .ktr-sticky-cta__form {
    display: flex;
    flex-direction: row;
    gap: 6px;
    width: 100%;
  }

  .ktr-sticky-cta__input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    font-size: 13px;
  }

  .ktr-sticky-cta__btn {
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 13px;
    flex-shrink: 0;
  }

  .ktr-popup__form-row {
    flex-direction: column;
  }

  .ktr-popup__inner {
    padding: 32px 24px 24px;
  }

  .ktr-popup__title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .ktr-popup {
    margin: 12px;
    border-radius: 16px;
  }

  .ktr-popup__title {
    font-size: 20px;
  }

  .ktr-popup__benefits {
    font-size: 13px;
  }

  /* Override: keep form as row even on very small screens */
  .ktr-sticky-cta__form {
    flex-direction: row;
    width: 100%;
    margin-right: 0;
    gap: 6px;
  }

  .ktr-sticky-cta__input {
    flex: 1;
    min-width: 0;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    font-size: 12px;
  }

  .ktr-sticky-cta__btn {
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* Add bottom padding to body when sticky CTA visible */
body.ktr-has-sticky-cta {
  padding-bottom: 72px;
}

/* ═══════════════════════════════════════
   PHASE 4 — UI/UX AUDIT REMEDIATION
   Task 1: Deep UI/UX Fixes
   ═══════════════════════════════════════ */

/* --- 1.1 Global Text Rendering & Selection --- */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--brand-primary);
  color: #ffffff;
}

/* --- 1.2 Skip-to-Content (Accessibility) --- */
.ktr-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 100000;
  padding: 12px 24px;
  background: var(--brand-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}

.ktr-skip-link:focus {
  top: 0;
}

/* --- 1.3 Focus-Visible States (WCAG 2.1 AA) --- */
*:focus-visible {
  outline: 3px solid var(--brand-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.ktr-nav-list li a:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
  background: rgba(26, 86, 219, 0.06);
  color: var(--brand-primary);
}

.ktr-header__cart:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

.elementor-button:focus-visible,
.btn-primary:focus-visible,
.amazon-buy-btn:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 3px;
}

.ktr-popup__input:focus-visible,
.ktr-sticky-cta__input:focus-visible {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}

.ktr-popup__close:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

.ktr-social-icon:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

.ktr-footer__links li a:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
  color: var(--brand-accent);
}

/* --- 1.4 Color Contrast Fixes (WCAG AA Compliance) --- */
/* Footer bottom text: was rgba(255,255,255,0.4) → too low */
.ktr-footer__bottom p {
  color: rgba(255, 255, 255, 0.6);
}

/* Footer desc: was rgba(255,255,255,0.6) → bump to 0.7 */
.ktr-footer__desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Footer links: was rgba(255,255,255,0.6) → bump for AA */
.ktr-footer__links li a {
  color: rgba(255, 255, 255, 0.7);
}

/* Popup privacy text: was #9CA3AF → too low on white */
.ktr-popup__privacy {
  color: #6B7280;
}

/* Sticky CTA text: was rgba(255,255,255,0.8) → ensure readable */
.ktr-sticky-cta__text {
  color: rgba(255, 255, 255, 0.85);
}

/* --- 1.5 Typography Hierarchy Refinement --- */
/* Ensure headings use consistent Poppins family */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

/* Section title: add text-balance for better wrapping */
.section-title {
  text-wrap: balance;
}

/* Section subtitle: better line-height */
.section-subtitle {
  line-height: 1.7;
}

/* WooCommerce product titles → brand font */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  padding: 12px 16px 4px;
  line-height: 1.4;
}

/* WooCommerce product price → better spacing */
.woocommerce ul.products li.product .price {
  padding: 0 16px 12px;
}

/* WooCommerce product button → better spacing inside card */
.woocommerce ul.products li.product .button {
  margin: 0 16px 16px;
  width: calc(100% - 32px);
  text-align: center;
  display: block;
}

/* --- 1.6 Scroll Offset for Sticky Header --- */
html {
  scroll-padding-top: 88px;
}

/* --- 1.7 Header Hamburger Active State --- */
.ktr-header__toggle--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ktr-header__toggle--active span:nth-child(2) {
  opacity: 0;
}

.ktr-header__toggle--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- 1.8 WooCommerce Product Image Consistency --- */
.woocommerce ul.products li.product a img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  height: auto;
}

/* --- 1.9 Improved Card Hover Transitions --- */
.woocommerce ul.products li.product {
  border: 1px solid transparent;
}

.woocommerce ul.products li.product:hover {
  border-color: var(--border-color);
}

/* --- 1.10 Testimonial Card Consistency --- */
.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* --- 1.11 Hero Heading Typography (Desktop) --- */
.hero-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  text-wrap: balance;
}

/* --- 1.12 Bundle Section Readability --- */
.bundle-section {
  position: relative;
}

.bundle-section .original-price {
  color: rgba(0, 0, 0, 0.5);
}

/* --- 1.13 Newsletter Input Focus Enhancement --- */
.newsletter-section input[type="email"]:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
  outline: none;
}

/* --- 1.14 Prefers-Reduced-Motion (Accessibility) --- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .book-card:hover,
  .woocommerce ul.products li.product:hover,
  .testimonial-card:hover,
  .elementor-button:hover,
  .btn-primary:hover,
  .amazon-buy-btn:hover {
    transform: none;
  }
}

/* --- 1.15 Print Styles --- */
@media print {

  .ktr-header,
  .ktr-footer,
  .ktr-popup-overlay,
  .ktr-sticky-cta {
    display: none !important;
  }

  .ktr-main {
    min-height: auto;
  }

  body {
    color: #000;
    background: #fff;
  }
}

/* ═══════════════════════════════════════
   PHASE 4 — Task 5: Popup Button Fix
   (Implementing early — critical contrast fix)
   ═══════════════════════════════════════ */

/* Popup CTA button: ensure high contrast + readability */
.ktr-popup__submit {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #1240A8 100%);
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.ktr-popup__submit:hover {
  background: linear-gradient(135deg, #1240A8 0%, #0E3490 100%);
  color: #FFFFFF !important;
}

.ktr-popup__submit:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 3px;
  color: #FFFFFF !important;
}

/* ── Sticky CTA: Full contrast + readability fix ── */
.ktr-sticky-cta__content strong {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

.ktr-sticky-cta__text {
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 500;
  opacity: 1;
}

.ktr-sticky-cta__btn {
  color: #000000 !important;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-shadow: none;
  padding: 12px 28px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.ktr-sticky-cta__btn:hover {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.ktr-sticky-cta__btn:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 2px;
}

.ktr-sticky-cta__input {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  font-weight: 500;
  font-size: 14px;
}

.ktr-sticky-cta__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.ktr-sticky-cta__dismiss {
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
}

.ktr-sticky-cta__dismiss:hover {
  color: #FFFFFF;
}

/* ═══════════════════════════════════════════════════════════
   PHASE 4 — Task 3: HERO SECTION DESIGN REPLICATION
   Reference: book-landing.html fanned book layout
   ═══════════════════════════════════════════════════════════ */

/* --- 3.1 Hero Section Base --- */
.ktr-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0A1628 0%, #1B2D4F 40%, #0D2240 100%);
  overflow: hidden;
}

/* Ambient glow overlays */
.ktr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 80% 30%, rgba(26, 86, 219, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Particle sparkle field */
.ktr-hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ktr-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(245, 158, 11, 0.6);
  border-radius: 50%;
  opacity: 0;
  animation: ktrFloat 6s infinite ease-in;
}

@keyframes ktrFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  20% {
    opacity: 0.7;
  }

  80% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(1.2);
  }
}

/* --- 3.2 Hero Inner Layout --- */
.ktr-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* --- 3.3 Fanned Book Covers Container (5 books) --- */
.ktr-hero__books {
  flex: 0 0 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  height: 460px;
}

/* Individual book cover */
.ktr-hero__book {
  position: absolute;
  width: 155px;
  height: 232px;
  border-radius: 6px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(245, 158, 11, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  background: var(--brand-secondary);
}

/* Link wrapper inside book */
.ktr-hero__book a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

/* Light reflection overlay on each book */
.ktr-hero__book::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.ktr-hero__book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Book 1 — Far left, most tilted */
.ktr-hero__book:nth-child(1) {
  left: 0;
  bottom: 80px;
  transform: rotate(-12deg);
  z-index: 1;
}

/* Book 2 — Inner left */
.ktr-hero__book:nth-child(2) {
  left: 95px;
  bottom: 50px;
  transform: rotate(-6deg);
  z-index: 2;
}

/* Book 3 — Center, larger, prominent */
.ktr-hero__book:nth-child(3) {
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  z-index: 4;
  width: 180px;
  height: 270px;
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(245, 158, 11, 0.12);
}

/* Book 4 — Inner right */
.ktr-hero__book:nth-child(4) {
  right: 95px;
  bottom: 50px;
  transform: rotate(6deg);
  z-index: 2;
}

/* Book 5 — Far right, most tilted */
.ktr-hero__book:nth-child(5) {
  right: 0;
  bottom: 80px;
  transform: rotate(12deg);
  z-index: 1;
}

/* Hover: straighten and lift */
.ktr-hero__book:hover {
  transform: translateY(-12px) rotate(0deg) scale(1.06);
  z-index: 6;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(245, 158, 11, 0.18);
}

.ktr-hero__book:nth-child(3):hover {
  transform: translateX(-50%) translateY(-12px) scale(1.06);
}

/* Book cover placeholder (when no image) */
.ktr-hero__book-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(180deg, #132848 0%, #0A1628 50%, #1A3A6A 100%);
  position: relative;
}

.ktr-hero__book-placeholder .placeholder-border {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 2px;
  pointer-events: none;
}

.ktr-hero__book-placeholder .placeholder-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.ktr-hero__book-placeholder .placeholder-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
}

.ktr-hero__book-placeholder .placeholder-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  letter-spacing: 1px;
}

/* --- 3.4 Hero Content (Right Side) --- */
.ktr-hero__content {
  flex: 1;
  max-width: 560px;
}

/* Badge / Tagline pill */
.ktr-hero__badge {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-accent);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 24px;
}

/* Main heading */
.ktr-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-wrap: balance;
}

.ktr-hero__title span {
  color: var(--brand-accent);
}

/* Sub-description */
.ktr-hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  font-style: italic;
}

/* CTA Button */
.ktr-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000000;
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-hover) 100%);
  padding: 16px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.3);
}

.ktr-hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(245, 158, 11, 0.45);
  color: #000000;
}

.ktr-hero__cta:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

/* Stats row */
.ktr-hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Stat item wrapper */
.ktr-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ktr-hero__stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-accent);
}

.ktr-hero__stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* --- 3.5 Elementor-Specific Hero Overrides ---
   Apply class "ktr-hero" to the outer Elementor Section/Container.
   Apply class "ktr-hero__books" to the books Flexbox Container.
   Apply class "ktr-hero__book" to each Image widget wrapper.
   Apply class "ktr-hero__content" to the text content Container.
*/

/* When using inside Elementor containers */
.ktr-hero>.elementor-container,
.ktr-hero>.e-con-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

/* Elementor image widget inside hero books */
.ktr-hero__books .elementor-widget-image .elementor-image,
.ktr-hero__books .elementor-widget-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- 3.6 Hero Responsive --- */
@media (max-width: 1024px) {

  .ktr-hero__inner,
  .ktr-hero>.elementor-container,
  .ktr-hero>.e-con-inner {
    flex-direction: column;
    gap: 48px;
    text-align: center;
    padding: 60px 24px;
  }

  .ktr-hero__books {
    flex: none;
    width: 440px;
    height: 380px;
  }

  .ktr-hero__book {
    width: 120px;
    height: 180px;
  }

  .ktr-hero__book:nth-child(2) {
    left: 75px;
  }

  .ktr-hero__book:nth-child(3) {
    width: 140px;
    height: 210px;
  }

  .ktr-hero__book:nth-child(4) {
    right: 75px;
  }

  .ktr-hero__title {
    font-size: 38px;
  }

  .ktr-hero__stats {
    justify-content: center;
  }

  .ktr-hero__content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .ktr-hero__title {
    font-size: 30px;
  }

  .ktr-hero__books {
    width: 340px;
    height: 320px;
  }

  .ktr-hero__book {
    width: 95px;
    height: 142px;
  }

  .ktr-hero__book:nth-child(1) {
    left: 0;
    bottom: 60px;
  }

  .ktr-hero__book:nth-child(2) {
    left: 55px;
    bottom: 40px;
  }

  .ktr-hero__book:nth-child(3) {
    width: 115px;
    height: 172px;
    bottom: 25px;
  }

  .ktr-hero__book:nth-child(4) {
    right: 55px;
    bottom: 40px;
  }

  .ktr-hero__book:nth-child(5) {
    right: 0;
    bottom: 60px;
  }

  .ktr-hero__stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .ktr-hero__cta {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   PHASE 4 — Task 4: "FIND YOUR COUNTRY GUIDE" SECTION
   Premium Grid Redesign
   ═══════════════════════════════════════════════════════════ */

/* --- 4.1 Section Container --- */
.ktr-guides {
  background: var(--bg-light);
  padding: 96px 0;
  position: relative;
}

.ktr-guides::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand-primary);
  border-radius: 2px;
}

.ktr-guides__header {
  text-align: center;
  margin-bottom: 56px;
}

.ktr-guides__title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  text-wrap: balance;
}

.ktr-guides__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- 4.2 Premium Card Grid --- */
.ktr-guides__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- 4.3 Individual Guide Card --- */
.ktr-guide-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.ktr-guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

/* --- 4.4 Card Image Area --- */
.ktr-guide-card__cover {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: linear-gradient(180deg, #132848 0%, #0A1628 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ktr-guide-card__cover img {
  width: 160px;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ktr-guide-card:hover .ktr-guide-card__cover img,
.ktr-guide-card:hover .ktr-guide-card__cover-placeholder {
  transform: scale(1.05);
}

/* Gradient overlay at bottom of image */
.ktr-guide-card__cover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.4));
  pointer-events: none;
}

/* Card cover placeholder (when no image) */
.ktr-guide-card__cover-placeholder {
  width: 160px;
  height: 240px;
  border-radius: 4px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(180deg, #1a3a6a 0%, #0a1628 50%, #132848 100%);
  position: relative;
}

.ktr-guide-card__cover-placeholder-border {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 2px;
  pointer-events: none;
}

.ktr-guide-card__cover-placeholder-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.ktr-guide-card__cover-placeholder-title {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.4;
}

/* --- 4.5 Country Flag Badge --- */
.ktr-guide-card__flag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 22, 40, 0.7);
  padding: 5px 14px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
}

.ktr-guide-card__flag-text {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- 4.6 Bestseller / New Badge --- */
.ktr-guide-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-hover) 100%);
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
}

/* --- 4.7 Card Body --- */
.ktr-guide-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ktr-guide-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.ktr-guide-card__excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- 4.8 Price Row --- */
.ktr-guide-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}

.ktr-guide-card__price {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-primary);
}

.ktr-guide-card__price-original {
  font-size: 15px;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.6;
}

/* Star rating */
.ktr-guide-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.ktr-guide-card__stars {
  color: var(--brand-accent);
  font-size: 14px;
  letter-spacing: 2px;
}

.ktr-guide-card__rating-text {
  font-size: 12px;
  color: var(--text-secondary);
}

/* --- 4.9 Card Actions --- */
.ktr-guide-card__actions {
  display: flex;
  gap: 10px;
}

/* When only one button (Add to Cart), make it full width */
.ktr-guide-card__actions .ktr-guide-card__btn-cart:only-child {
  flex: 1;
  width: 100%;
}

.ktr-guide-card__btn-view {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: transparent;
  border: 2px solid var(--brand-primary);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.ktr-guide-card__btn-view:hover {
  background: rgba(26, 86, 219, 0.08);
  transform: translateY(-2px);
}

.ktr-guide-card__btn-cart {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-hover) 100%);
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.ktr-guide-card__btn-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.35);
  color: #ffffff;
}

/* Amazon secondary link under buttons */
.ktr-guide-card__amazon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ktr-guide-card__amazon:hover {
  color: #FF9900;
}

.ktr-guide-card__amazon-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF9900, #E88800);
  color: #000000;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 0.5px;
}

/* --- 4.10 WooCommerce Integration Overrides ---
   These styles apply when WooCommerce product loop
   is wrapped with the .ktr-guides section class.
*/
.ktr-guides .woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.ktr-guides .woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ktr-guides .woocommerce ul.products li.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.ktr-guides .woocommerce ul.products li.product a img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0;
}

.ktr-guides .woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 20px 6px;
  line-height: 1.35;
}

.ktr-guides .woocommerce ul.products li.product .price {
  font-size: 22px;
  font-weight: 800;
  padding: 0 20px 16px;
}

.ktr-guides .woocommerce ul.products li.product .button {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* --- 4.11 Section Responsive --- */
@media (max-width: 1024px) {
  .ktr-guides {
    padding: 80px 0;
  }

  .ktr-guides__title {
    font-size: 30px;
  }

  .ktr-guides__grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .ktr-guides {
    padding: 64px 0;
  }

  .ktr-guides__title {
    font-size: 26px;
  }

  .ktr-guides__subtitle {
    font-size: 15px;
    padding: 0 16px;
  }

  .ktr-guides__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .ktr-guide-card__cover {
    height: 300px;
  }

  .ktr-guide-card__actions {
    flex-direction: column;
  }

  .ktr-guide-card__btn-cart {
    width: 100%;
  }

  .ktr-guides .woocommerce ul.products {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* --- 4.12 Elementor Structure Guide ---

   RECOMMENDED ELEMENTOR SETUP:

   1. Hero Section (Task 3):
      ┌─ Section/Container → Class: "ktr-hero"
      │  ├─ Container (Flexbox, Row) → Class: "ktr-hero__inner"
      │  │  ├─ Container → Class: "ktr-hero__books"
      │  │  │  ├─ Image Widget (Book 1 - UK) → wrapper Class: "ktr-hero__book" (linked)
      │  │  │  ├─ Image Widget (Book 2 - USA) → wrapper Class: "ktr-hero__book" (linked)
      │  │  │  ├─ Image Widget (Book 3 - Canada) → wrapper Class: "ktr-hero__book" (linked)
      │  │  │  ├─ Image Widget (Book 4 - Australia) → wrapper Class: "ktr-hero__book" (linked)
      │  │  │  └─ Image Widget (Book 5 - Nigeria) → wrapper Class: "ktr-hero__book" (linked)
      │  │  └─ Container → Class: "ktr-hero__content"
      │  │     ├─ Heading/Text → Class: "ktr-hero__badge"
      │  │     ├─ Heading → Class: "ktr-hero__title"
      │  │     ├─ Text Editor → Class: "ktr-hero__desc"
      │  │     ├─ Button → Class: "ktr-hero__cta"
      │  │     └─ Container (Flex Row) → Class: "ktr-hero__stats"

   2. Country Guide Section (Task 4):
      ┌─ Section/Container → Class: "ktr-guides"
      │  ├─ Container → Class: "ktr-guides__header"
      │  │  ├─ Heading → Class: "ktr-guides__title"
      │  │  └─ Text → Class: "ktr-guides__subtitle"
      │  └─ Container → Class: "ktr-guides__grid"
      │     ├─ Container → Class: "ktr-guide-card"
      │     │  ├─ Container → Class: "ktr-guide-card__cover"
      │     │  │  ├─ HTML → Class: "ktr-guide-card__flag" (emoji + text)
      │     │  │  ├─ HTML → Class: "ktr-guide-card__badge" (optional)
      │     │  │  └─ Image Widget (book cover)
      │     │  └─ Container → Class: "ktr-guide-card__body"
      │     │     ├─ Heading → Class: "ktr-guide-card__title"
      │     │     ├─ Text → Class: "ktr-guide-card__excerpt"
      │     │     ├─ Container → Class: "ktr-guide-card__price-row"
      │     │     ├─ Container → Class: "ktr-guide-card__actions"
      │     │     │  ├─ Button → Class: "ktr-guide-card__btn-view"
      │     │     │  └─ Button → Class: "ktr-guide-card__btn-cart"
      │     │     └─ Link → Class: "ktr-guide-card__amazon" (optional)
      │     ├─ Container → (repeat for each country...)
      │     └─ ...

   OR use WooCommerce Products widget inside .ktr-guides
   container for automatic product loop styling.
*/

/* ═══════════════════════════════════════
   SCROLL-TRIGGERED FADE-UP ANIMATION
   Add class "ktr-fade-up" to any Elementor
   widget/container for reveal-on-scroll effect
   ═══════════════════════════════════════ */
.ktr-fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.ktr-fade-up--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for grid children */
.ktr-guides__grid .ktr-guide-card:nth-child(2),
.ktr-guides__grid .ktr-fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.ktr-guides__grid .ktr-guide-card:nth-child(3),
.ktr-guides__grid .ktr-fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.ktr-guides__grid .ktr-guide-card:nth-child(4),
.ktr-guides__grid .ktr-fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

.ktr-guides__grid .ktr-guide-card:nth-child(5),
.ktr-guides__grid .ktr-fade-up:nth-child(5) {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════
   /OUR-BOOKS/ PAGE — PREMIUM REDESIGN
   Phase 6 Task 1: Publisher-quality catalog
   ═══════════════════════════════════════ */

/* --- Books Hero Section --- */
.ktr-books-hero {
  background: linear-gradient(135deg, #0A1628 0%, #132848 50%, #0A1628 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ktr-books-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ktr-books-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ktr-books-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ktr-books-hero__badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.08));
  color: var(--brand-accent);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(245, 158, 11, 0.25);
  margin-bottom: 24px;
}

.ktr-books-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 20px;
}

.ktr-books-hero__title span {
  background: linear-gradient(135deg, var(--brand-accent), #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ktr-books-hero__desc {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.ktr-books-hero__cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-accent), #D97706);
  color: #0A1628;
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.ktr-books-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45);
  color: #0A1628;
}

.ktr-books-hero__stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.ktr-books-hero__stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
}

.ktr-books-hero__stat-icon {
  font-size: 18px;
}

.ktr-books-hero__stat strong {
  color: rgba(255, 255, 255, 0.9);
}

/* --- Books Catalog Section --- */
.ktr-books-catalog {
  padding: 80px 24px;
  background: var(--bg-light, #F3F4F6);
  position: relative;
}

.ktr-books-catalog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--brand-accent), #D97706);
  border-radius: 2px;
}

.ktr-books-catalog__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.ktr-books-catalog__title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary, #111827);
  margin: 0 0 12px;
}

.ktr-books-catalog__subtitle {
  font-size: 17px;
  color: var(--text-secondary, #6B7280);
  line-height: 1.6;
  margin: 0;
}

/* Premium overrides for guide cards on /our-books/ */
.ktr-books-catalog .ktr-guides__grid {
  max-width: 1200px;
  margin: 0 auto;
  gap: 32px;
}

.ktr-books-catalog .ktr-guide-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
}

.ktr-books-catalog .ktr-guide-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-12px);
}

.ktr-books-catalog .ktr-guide-card:hover .ktr-guide-card__cover img {
  transform: scale(1.08);
}

.ktr-books-catalog .ktr-guide-card__title {
  font-size: 20px;
  font-weight: 700;
}

.ktr-books-catalog .ktr-guide-card__price {
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-primary, #1A56DB);
}

.ktr-books-catalog .ktr-guide-card__btn-cart {
  background: linear-gradient(135deg, var(--brand-accent), #D97706) !important;
  color: #0A1628 !important;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
}

.ktr-books-catalog .ktr-guide-card__btn-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, #FBBF24, var(--brand-accent)) !important;
}

/* --- Bundle Section Base Styles --- */
.ktr-section.ktr-bundle {
  padding: 80px 0;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 50%, #FEF3C7 100%);
}

.ktr-bundle__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.ktr-bundle__content {
  flex: 1;
}

.ktr-bundle__badge {
  display: inline-block;
  background: var(--brand-primary, #1A56DB);
  color: #FFFFFF;
  padding: 6px 18px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ktr-bundle__title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary, #111827);
  margin: 0 0 8px;
  line-height: 1.2;
}

.ktr-bundle__subtitle {
  font-size: 18px;
  color: var(--text-secondary, #6B7280);
  margin: 0 0 24px;
}

.ktr-bundle__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.ktr-bundle__list li {
  padding: 6px 0;
  font-size: 16px;
  color: var(--text-primary, #111827);
  font-weight: 500;
}

.ktr-bundle__pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.ktr-bundle__price-old {
  text-decoration: line-through;
  color: #9CA3AF;
  font-size: 20px;
}

.ktr-bundle__price-new {
  font-size: 48px;
  font-weight: 800;
  color: var(--brand-primary, #1A56DB);
  line-height: 1;
}

.ktr-bundle__savings {
  display: inline-block;
  background: var(--brand-accent-2, #10B981);
  color: #FFFFFF;
  padding: 5px 14px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
}

.ktr-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.ktr-btn--dark {
  background: linear-gradient(135deg, #0A1628, #1B2D4F);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.3);
}

.ktr-btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.45);
  color: #FFFFFF;
}

.ktr-btn--lg {
  padding: 18px 40px;
  font-size: 18px;
}

.ktr-bundle__image {
  flex: 0 0 320px;
}

.ktr-bundle__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .ktr-bundle__inner {
    gap: 32px;
  }

  .ktr-bundle__image {
    flex: 0 0 250px;
  }

  .ktr-bundle__title {
    font-size: 30px;
  }

  .ktr-bundle__price-new {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .ktr-section.ktr-bundle {
    padding: 48px 0;
  }

  .ktr-bundle__inner {
    flex-direction: column;
    text-align: center;
  }

  .ktr-bundle__image {
    flex: none;
    width: 240px;
    order: -1;
  }

  .ktr-bundle__pricing {
    justify-content: center;
  }

  .ktr-bundle__title {
    font-size: 28px;
  }

  .ktr-bundle__price-new {
    font-size: 36px;
  }

  .ktr-btn--lg {
    width: 100%;
    max-width: 320px;
  }
}

/* --- Amazon Section Upgrade --- */
.ktr-books-amazon {
  background: linear-gradient(135deg, #0A1628 0%, #1B2D4F 100%);
  padding: 60px 24px;
  text-align: center;
}

.ktr-books-amazon__inner {
  max-width: 600px;
  margin: 0 auto;
}

.ktr-books-amazon__title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 20px;
}

.ktr-books-amazon__btn {
  display: inline-block;
  background: linear-gradient(135deg, #FF9900, #E88800);
  color: #000000;
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 153, 0, 0.3);
}

.ktr-books-amazon__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 153, 0, 0.45);
  color: #000000;
}

/* --- Responsive: /our-books/ --- */
@media (max-width: 1024px) {
  .ktr-books-hero__title {
    font-size: 40px;
  }

  .ktr-books-hero__desc {
    font-size: 17px;
  }

  .ktr-books-catalog {
    padding: 60px 20px;
  }

  .ktr-books-catalog .ktr-guides__grid {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .ktr-books-hero {
    padding: 56px 20px;
  }

  .ktr-books-hero__title {
    font-size: 32px;
  }

  .ktr-books-hero__desc {
    font-size: 16px;
  }

  .ktr-books-hero__cta {
    padding: 14px 32px;
    font-size: 16px;
    width: 100%;
    max-width: 320px;
  }

  .ktr-books-hero__stats {
    gap: 16px;
  }

  .ktr-books-hero__stat {
    font-size: 13px;
  }

  .ktr-books-catalog {
    padding: 48px 16px;
  }

  .ktr-books-catalog__title {
    font-size: 28px;
  }

  .ktr-books-catalog .ktr-guides__grid {
    gap: 20px;
  }

  .ktr-books-catalog .ktr-guide-card__price {
    font-size: 22px;
  }

  .ktr-books-catalog-bundle {
    padding: 0 16px 60px;
  }
}

/* ═══════════════════════════════════════
   BLOG ARCHIVE — PREMIUM REDESIGN
   Phase 7: Professional blog archive layout
   ═══════════════════════════════════════ */

/* --- Blog Hero Section --- */
.ktr-blog-hero {
  background: linear-gradient(135deg, #0A1628 0%, #132848 50%, #0A1628 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ktr-blog-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ktr-blog-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ktr-blog-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ktr-blog-hero__badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.2), rgba(26, 86, 219, 0.08));
  color: #93B4F4;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(26, 86, 219, 0.3);
  margin-bottom: 24px;
}

.ktr-blog-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 20px;
}

.ktr-blog-hero__title span {
  background: linear-gradient(135deg, var(--brand-accent), #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ktr-blog-hero__desc {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 640px;
}

/* --- Archive Posts Grid Premium Overrides --- */
.ktr-blog-grid {
  padding: 60px 24px 80px;
  background: var(--bg-light, #F3F4F6);
  position: relative;
}

.ktr-blog-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--brand-primary, #1A56DB), #3B82F6);
  border-radius: 2px;
}

/* Card container */
.ktr-blog-grid .elementor-posts-container {
  gap: 32px !important;
}

/* Individual post card */
.ktr-blog-grid .elementor-post {
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ktr-blog-grid .elementor-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.ktr-blog-grid .elementor-post__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Thumbnail / Featured Image */
.ktr-blog-grid .elementor-post__thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 0 !important;
}

.ktr-blog-grid .elementor-post__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ktr-blog-grid .elementor-post:hover .elementor-post__thumbnail img {
  transform: scale(1.08);
}

/* Category Badge */
.ktr-blog-grid .elementor-post__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand-primary, #1A56DB);
  color: #FFFFFF;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  z-index: 2;
  line-height: 1.4;
}

/* Text Content Area */
.ktr-blog-grid .elementor-post__text {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Post Title */
.ktr-blog-grid .elementor-post__title {
  font-family: 'Poppins', sans-serif;
  font-size: 19px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  margin: 0 0 12px !important;
}

.ktr-blog-grid .elementor-post__title a {
  color: var(--text-primary, #111827);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ktr-blog-grid .elementor-post__title a:hover {
  color: var(--brand-primary, #1A56DB);
}

/* Excerpt */
.ktr-blog-grid .elementor-post__excerpt {
  flex: 1;
  margin-bottom: 16px;
}

.ktr-blog-grid .elementor-post__excerpt p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary, #6B7280);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta Data */
.ktr-blog-grid .elementor-post__meta-data {
  font-size: 13px;
  color: #9CA3AF;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F3F4F6;
}

.ktr-blog-grid .elementor-post__meta-data span {
  color: #9CA3AF;
}

/* Read More Link */
.ktr-blog-grid .elementor-post__read-more {
  display: inline-flex;
  align-items: center;
  color: var(--brand-primary, #1A56DB) !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: auto;
}

.ktr-blog-grid .elementor-post__read-more:hover {
  color: var(--brand-accent, #F59E0B) !important;
  transform: translateX(4px);
}

/* Pagination */
.ktr-blog-grid .elementor-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.ktr-blog-grid .elementor-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-secondary, #6B7280);
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  transition: all 0.2s ease;
  text-decoration: none;
}

.ktr-blog-grid .elementor-pagination .page-numbers:hover {
  background: var(--brand-primary, #1A56DB);
  color: #FFFFFF;
  border-color: var(--brand-primary, #1A56DB);
}

.ktr-blog-grid .elementor-pagination .page-numbers.current {
  background: var(--brand-primary, #1A56DB);
  color: #FFFFFF;
  border-color: var(--brand-primary, #1A56DB);
}

/* Hide avatar overlay on cards */
.ktr-blog-grid .elementor-post__avatar {
  display: none !important;
}

/* Hide "No Comments" in meta */
.ktr-blog-grid .elementor-post__meta-data .elementor-post-avatar {
  display: none !important;
}

/* Card wrapper */
.ktr-blog-grid .elementor-post__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px !important;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  background: #FFFFFF !important;
}

/* Image zoom on hover */
.ktr-blog-grid .elementor-post__thumbnail {
  overflow: hidden;
}

.ktr-blog-grid .elementor-post__thumbnail img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.ktr-blog-grid .elementor-post:hover .elementor-post__thumbnail img {
  transform: scale(1.08);
}

/* No results fallback */
.ktr-blog-grid .elementor-posts-nothing-found {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-secondary, #6B7280);
  font-size: 18px;
}

/* --- Blog CTA Section --- */
.ktr-blog-cta {
  background: linear-gradient(135deg, #0A1628 0%, #1B2D4F 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ktr-blog-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.ktr-blog-cta__inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ktr-blog-cta__title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 12px;
}

.ktr-blog-cta__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 0 32px;
}

.ktr-blog-cta__btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-accent, #F59E0B), #D97706);
  color: #0A1628;
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.ktr-blog-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45);
  color: #0A1628;
}

/* --- Responsive: Blog Archive --- */
@media (max-width: 1024px) {
  .ktr-blog-hero__title {
    font-size: 40px;
  }

  .ktr-blog-hero__desc {
    font-size: 17px;
  }

  .ktr-blog-grid {
    padding: 48px 20px 60px;
  }

  .ktr-blog-grid .elementor-posts-container {
    gap: 24px !important;
  }
}

@media (max-width: 640px) {
  .ktr-blog-hero {
    padding: 56px 20px;
  }

  .ktr-blog-hero__title {
    font-size: 32px;
  }

  .ktr-blog-hero__desc {
    font-size: 16px;
  }

  .ktr-blog-grid {
    padding: 40px 16px 48px;
  }

  .ktr-blog-grid .elementor-post__text {
    padding: 20px 20px 24px;
  }

  .ktr-blog-grid .elementor-post__title {
    font-size: 17px !important;
  }

  .ktr-blog-cta {
    padding: 56px 20px;
  }

  .ktr-blog-cta__title {
    font-size: 26px;
  }

  .ktr-blog-cta__btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ═══════════════════════════════════════
   PHASE 9: DYNAMIC SHOP PAGE REDESIGN
   ═══════════════════════════════════════ */

/* --- Shop Page Hero Banner --- */
.ktr-shop-hero {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #1B2D4F 100%);
  padding: 48px 0 40px;
  text-align: center;
  margin-bottom: 40px;
}

.ktr-shop-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.ktr-shop-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin: 0;
}

/* --- Shop Layout: Sidebar + Grid --- */
.woocommerce .ktr-shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

/* --- Sidebar --- */
.ktr-shop-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.ktr-shop-sidebar .widget {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
}

.ktr-shop-sidebar .widget-title,
.ktr-shop-sidebar .widgettitle {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brand-primary);
}

.ktr-shop-sidebar .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ktr-shop-sidebar .widget ul li {
  margin-bottom: 8px;
}

.ktr-shop-sidebar .widget ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  display: block;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.ktr-shop-sidebar .widget ul li a:hover,
.ktr-shop-sidebar .widget ul li.current-cat a {
  color: var(--brand-primary);
  background: rgba(26, 86, 219, 0.06);
}

.ktr-shop-sidebar .widget ul li .count {
  float: right;
  background: var(--bg-light);
  padding: 1px 8px;
  border-radius: 10px;
  font-size: 12px;
  color: var(--text-secondary);
}

/* --- WooCommerce Price Filter Widget --- */
.ktr-shop-sidebar .widget_price_filter .price_slider_wrapper {
  padding: 10px 0;
}

.ktr-shop-sidebar .widget_price_filter .ui-slider-horizontal {
  height: 6px;
  background: #E5E7EB;
  border-radius: 3px;
  border: none;
}

.ktr-shop-sidebar .widget_price_filter .ui-slider-range {
  background: var(--brand-primary);
  border-radius: 3px;
}

.ktr-shop-sidebar .widget_price_filter .ui-slider-handle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-primary);
  top: -6px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ktr-shop-sidebar .widget_price_filter .price_label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 12px;
}

.ktr-shop-sidebar .widget_price_filter .button {
  background: var(--brand-primary) !important;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.2s ease;
}

.ktr-shop-sidebar .widget_price_filter .button:hover {
  background: var(--brand-primary-hover) !important;
}

/* --- Product Grid (Enhanced) --- */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 !important;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #fff;
  position: relative;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.woocommerce ul.products li.product a img {
  border-radius: 0;
  transition: transform 0.4s ease;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.03);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 16px 4px !important;
  color: var(--text-primary);
  line-height: 1.4;
}

.woocommerce ul.products li.product .price {
  padding: 0 16px 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-primary);
}

.woocommerce ul.products li.product .price del {
  color: #9CA3AF;
  font-size: 14px;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
  margin: 0 16px 16px !important;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  background: var(--brand-primary) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-align: center;
  display: block;
  width: calc(100% - 32px);
}

.woocommerce ul.products li.product:hover .button,
.woocommerce ul.products li.product:hover .add_to_cart_button {
  opacity: 1;
  transform: translateY(0);
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
  background: var(--brand-primary-hover) !important;
}

/* --- Variable product "Select options" button --- */
.woocommerce ul.products li.product .button.product_type_variable {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-hover)) !important;
}

/* --- Sorting & Result Count Bar --- */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  background: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px !important;
  font-size: 14px;
}

.woocommerce .woocommerce-ordering select {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.woocommerce .woocommerce-ordering select:focus {
  border-color: var(--brand-primary);
  outline: none;
}

/* --- Responsive Shop Grid --- */
@media (max-width: 1024px) {
  .woocommerce .ktr-shop-layout {
    grid-template-columns: 1fr;
  }

  .ktr-shop-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .ktr-shop-sidebar {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product .add_to_cart_button {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════
   PHASE 13 — 100% RESPONSIVE RECTIFICATION
   ═══════════════════════════════════════ */

/* --- Tablet / Mobile Breakpoint Constants --- */
@media (max-width: 1024px) {

  /* 1. Hero Section Tablet Fix: Prevent Fanned Books Overlap */
  .ktr-hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 60px 20px;
  }

  .ktr-hero__books {
    transform: scale(0.8);
    /* Scale down 3D books to fit screen */
    height: 380px;
  }

  .hero-heading {
    font-size: 36px;
  }

  /* 2. Shop Page Archive Layout */
  .ktr-shop-layout {
    grid-template-columns: 1fr;
    /* Stack sidebar and products */
    gap: 30px;
  }

  .ktr-product-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 Products per row on Tablet */
  }

  /* 3. Blog Archive Grid */
  .elementor-posts-container.elementor-posts-masonry {
    column-count: 2 !important;
    /* Force 2 columns tablet */
  }
}

@media (max-width: 767px) {

  /* 1. Shop & Book Grids Mobile Fix */
  .ktr-product-grid {
    grid-template-columns: 1fr;
    /* 1 Product per row on Mobile */
  }

  /* 2. WooCommerce Single Product Layout */
  .woocommerce #content div.product div.images,
  .woocommerce div.product div.images,
  .woocommerce-page #content div.product div.images,
  .woocommerce-page div.product div.images {
    width: 100% !important;
    float: none !important;
    margin-bottom: 30px;
  }

  .woocommerce #content div.product div.summary,
  .woocommerce div.product div.summary,
  .woocommerce-page #content div.product div.summary,
  .woocommerce-page div.product div.summary {
    width: 100% !important;
    float: none !important;
  }

  /* Add tappable margins to buttons on Mobile */
  .single_variation_wrap .woocommerce-variation-add-to-cart {
    flex-direction: column;
    /* Stack Quantity and Add to Cart */
    gap: 15px;
  }

  .amazon-buy-btn {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 20px;
  }

  /* 3. Blog Reading Width Fix */
  .single-post .elementor-widget-theme-post-content {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
    /* Optimized reading physical size */
  }

  .elementor-posts-container.elementor-posts-masonry {
    column-count: 1 !important;
    /* Force 1 column mobile */
  }

  /* 4. Popup Avatar Wrapping Fix */
  .ktr-popup__social-proof {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* 5. Sticky CTA Extreme Mobile Fix (<360px fix included) */
  .ktr-sticky-cta__btn {
    width: 100%;
  }

  .ktr-sticky-cta__input {
    width: 100%;
    font-size: 13px;
  }
}

/* ═══════════════════════════════════════
   PHASE 13 — RESPONSIVE GRID LAYOUT
   "Why Know the Rules?" + "What Readers Are Saying"
   The inline grid-template-columns was removed from
   Elementor HTML widgets via fix_grids.php. 
   Grid columns are now controlled entirely by CSS.
   ═══════════════════════════════════════ */

/* --- Desktop default: 3 columns --- */
.elementor-element-2b4edca>div,
.elementor-element-da84713>div {
  grid-template-columns: repeat(3, 1fr);
}

/* --- Tablet: 2 columns --- */
@media (max-width: 1024px) {

  .elementor-element-2b4edca>div,
  .elementor-element-da84713>div {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* --- Mobile: 1 column stacked --- */
@media (max-width: 767px) {

  .elementor-element-2b4edca>div,
  .elementor-element-da84713>div {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }

  /* Ensure individual card/feature items stretch full width */
  .elementor-element-2b4edca>div>div,
  .elementor-element-da84713>div>div {
    width: 100%;
    max-width: 100%;
  }

  /* "Why Know the Rules?" heading text smaller on mobile */
  .elementor-element-5e41069 .elementor-widget-heading h2,
  .elementor-element-5e41069 .elementor-heading-title {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }

  /* Reviews section heading */
  .elementor-element-4790982 .elementor-widget-heading h2,
  .elementor-element-4790982 .elementor-heading-title {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }

  /* Testimonial cards: ensure full width & readable text */
  .testimonial-card,
  .elementor-element-da84713>div>div {
    padding: 20px;
    font-size: 14px;
  }
}
/* ═══════════════════════════════════════
   HERO SECTION — MOBILE RESPONSIVE
   ═══════════════════════════════════════ */

/* --- Tablet --- */
@media (max-width: 1024px) {
  .elementor-element-9d2909c .elementor-heading-title {
    font-size: 2.8rem !important;
    line-height: 1.15 !important;
  }
}

/* --- Mobile --- */
@media (max-width: 767px) {
  .elementor-element-9d2909c > .elementor-container {
    flex-direction: column !important;
  }

  .elementor-element-9d2909c .elementor-column {
    width: 100% !important;
  }

  .elementor-element-9d2909c .elementor-widget-wrap {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .elementor-element-9d2909c .elementor-heading-title {
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }

  .elementor-element-9d2909c .elementor-widget-text-editor {
    text-align: center !important;
  }

  .elementor-element-9d2909c .elementor-widget-text-editor p {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .elementor-element-9d2909c .elementor-widget-html div[style*="display:flex"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100%;
  }

  .elementor-element-9d2909c .elementor-widget-html div[style*="display:flex"] a {
    width: 100% !important;
    max-width: 300px !important;
    text-align: center !important;
    box-sizing: border-box;
  }

  .elementor-element-9d2909c .elementor-widget-html:last-child div[style*="display:flex"] {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .ktr-hero__books {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-top: 24px !important;
    gap: 8px !important;
  }

  .ktr-hero__book {
    width: 70px !important;
  }

  .elementor-element-9d2909c {
    padding: 60px 16px 40px !important;
  }
}
