/* ─── Topbar ─── */
.tp-topbar {
  background: linear-gradient(90deg, var(--tp-blue-deep), var(--tp-blue));
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  position: relative;
  z-index: 70;
}

.tp-topbar-in {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.tp-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.2px;
}

.tp-topbar-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ─── Header & Nav ─── */
.tp-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tp-line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--tp-transition);
}

.tp-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(28, 43, 58, 0.08);
}

.tp-header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.tp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.tp-brand img {
  max-height: 52px;
  width: auto;
}

.tp-brand-svg {
  width: 44px;
  height: 54px;
  flex-shrink: 0;
}

.tp-brand-text {
  line-height: 1.05;
  font-family: 'Baloo Da 2', cursive;
  color: var(--tp-red);
}

.tp-brand-text b {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.tp-brand-text small {
  font-size: 15px;
  font-weight: 700;
  color: var(--tp-red);
  letter-spacing: 0.3px;
}

.tp-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 16px;
}

.tp-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--tp-ink);
  display: inline-block;
}

.tp-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--tp-red), var(--tp-blue));
  transition: width 0.3s ease;
}

.tp-nav a:hover,
.tp-nav li.current-menu-item > a {
  color: var(--tp-blue-deep);
}

.tp-nav a:hover::after,
.tp-nav li.current-menu-item > a::after {
  width: 100%;
}

.tp-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Cart Button */
.tp-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tp-blue-light);
  color: var(--tp-blue-deep);
  border: 1px solid rgba(27, 117, 188, 0.2);
  transition: var(--tp-transition);
}

.tp-cart-btn:hover {
  background: var(--tp-blue-deep);
  color: #fff;
  transform: translateY(-2px);
}

.tp-cart-btn svg {
  width: 20px;
  height: 20px;
}

.tp-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: var(--tp-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 2px 6px rgba(226, 35, 26, 0.4);
}

.tp-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 70;
}

.tp-menu-btn span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--tp-red);
  transition: var(--tp-transition);
}

.tp-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.tp-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.tp-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ─── Buttons ─── */
.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--tp-radius-full);
  padding: 13px 28px;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Hind Siliguri', sans-serif;
  cursor: pointer;
  transition: var(--tp-transition);
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.3;
}

.tp-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.tp-btn:hover svg {
  transform: translateX(3px);
}

.tp-btn-red {
  background: var(--tp-red);
  color: #fff;
  box-shadow: var(--tp-shadow-red);
}

.tp-btn-red:hover {
  background: var(--tp-red-deep);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(226, 35, 26, 0.4);
}

.tp-btn-blue-line {
  border-color: var(--tp-blue);
  color: var(--tp-blue-deep);
  background: transparent;
}

.tp-btn-blue-line:hover {
  background: var(--tp-blue);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--tp-shadow-blue);
}

.tp-btn-white {
  background: #fff;
  color: var(--tp-blue-deep);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.tp-btn-white:hover {
  background: #fff;
  color: var(--tp-red);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.tp-btn-sm {
  padding: 9px 20px;
  font-size: 14.5px;
}

/* ─── Kickers & Section Headers ─── */
.tp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tp-red-light);
  color: var(--tp-red);
  border: 1px solid rgba(226, 35, 26, 0.28);
  padding: 6px 18px;
  border-radius: var(--tp-radius-full);
  font-weight: 600;
  font-size: 14px;
}

.tp-kicker.blue {
  background: var(--tp-blue-light);
  color: var(--tp-blue-deep);
  border-color: rgba(27, 117, 188, 0.3);
}

.tp-kicker.white {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.tp-sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.tp-sec-head h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.32;
  margin-top: 14px;
}

.tp-h-line {
  width: 96px;
  height: 5px;
  margin: 14px auto 0;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--tp-red) 0 50%, var(--tp-blue) 50% 100%);
}

.tp-sec-head p {
  color: var(--tp-muted);
  margin-top: 15px;
  font-size: 16.5px;
}

/* ─── Hero Section ─── */
.tp-hero {
  padding: 76px 0 96px;
  position: relative;
  background-image: radial-gradient(circle at 1px 1px, rgba(27, 117, 188, 0.10) 1px, transparent 0);
  background-size: 24px 24px;
  overflow: hidden;
}

.tp-hero .paisley-bg {
  position: absolute;
  right: -60px;
  top: 40px;
  width: 360px;
  color: rgba(27, 117, 188, 0.07);
  transform: rotate(18deg);
  pointer-events: none;
}

.tp-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.tp-hero h1 {
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.28;
  margin: 18px 0 10px;
}

.tp-hero .lead {
  font-size: 18px;
  color: var(--tp-muted);
  max-width: 540px;
}

.tp-hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 30px 0 36px;
}

.tp-hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px dashed var(--tp-line);
}

.tp-hero-stats b {
  font-family: 'Baloo Da 2', cursive;
  font-size: 28px;
  display: block;
  line-height: 1.2;
}

.tp-hero-stats div:nth-child(odd) b { color: var(--tp-red); }
.tp-hero-stats div:nth-child(even) b { color: var(--tp-blue-deep); }
.tp-hero-stats span { font-size: 14px; color: var(--tp-muted); }

.tp-hero-art {
  position: relative;
}

.tp-hero-art::before {
  content: '';
  position: absolute;
  inset: 22px -20px -20px 22px;
  border: 3px dashed var(--tp-blue);
  border-radius: 28px;
  z-index: 0;
}

.tp-frame {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 28px 65px rgba(14, 90, 153, 0.22);
}

.tp-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tp-frame:hover img {
  transform: scale(1.03);
}

.tp-chip-float {
  position: absolute;
  z-index: 2;
  background: #fff;
  border-radius: var(--tp-radius-md);
  box-shadow: 0 14px 34px rgba(28, 43, 58, 0.16);
  padding: 11px 20px;
  font-weight: 700;
  font-size: 14.5px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.tp-chip-float svg {
  width: 18px;
  height: 18px;
}

.tp-chip-float.c1 {
  top: 24px;
  left: -24px;
  color: var(--tp-blue-deep);
  border-left: 4px solid var(--tp-blue);
}

.tp-chip-float.c2 {
  bottom: 28px;
  right: -16px;
  color: var(--tp-red);
  border-left: 4px solid var(--tp-red);
}

/* ─── Features Section ─── */
.tp-features {
  padding: 82px 0;
  background: #fff;
}

.tp-f-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.tp-f-card {
  background: var(--tp-paper);
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--tp-transition);
  position: relative;
  overflow: hidden;
}

.tp-f-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tp-blue), var(--tp-red));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tp-f-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tp-shadow-md);
  background: #fff;
}

.tp-f-card:hover::before {
  opacity: 1;
}

.tp-f-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--tp-blue-light);
  color: var(--tp-blue-deep);
  transition: transform 0.4s ease;
}

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

.tp-f-icon svg {
  width: 32px;
  height: 32px;
}

.tp-f-card:nth-child(even) .tp-f-icon {
  background: var(--tp-red-light);
  color: var(--tp-red);
}

.tp-f-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.tp-f-card p {
  font-size: 15px;
  color: var(--tp-muted);
  line-height: 1.6;
}

/* ─── Collection / Products ─── */
.tp-collection {
  padding: 92px 0;
}

.tp-c-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}

.tp-p-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--tp-line);
  box-shadow: var(--tp-shadow-sm);
  transition: var(--tp-transition);
  display: flex;
  flex-direction: column;
}

.tp-p-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--tp-shadow-lg);
  border-color: rgba(27, 117, 188, 0.25);
}

.tp-p-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/4.5;
  background: #f0f3f6;
}

.tp-p-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tp-p-card:hover .tp-p-media img {
  transform: scale(1.08);
}

.tp-p-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--tp-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--tp-radius-full);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.tp-p-tag.blue {
  background: var(--tp-blue);
}

.tp-p-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tp-p-body h3 {
  font-size: 21px;
  line-height: 1.38;
}

.tp-p-desc {
  font-size: 14.5px;
  color: var(--tp-muted);
  line-height: 1.6;
}

.tp-p-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tp-p-meta span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--tp-blue-deep);
  background: var(--tp-blue-light);
  border: 1px solid rgba(27, 117, 188, 0.22);
  padding: 3px 12px;
  border-radius: var(--tp-radius-full);
}

.tp-p-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
  flex-wrap: wrap;
}

.tp-now {
  font-family: 'Baloo Da 2', cursive;
  font-size: 26px;
  color: var(--tp-red);
  font-weight: 800;
}

.tp-old {
  color: #9AA7B4;
  text-decoration: line-through;
  font-size: 15px;
}

.tp-save {
  background: var(--tp-blue-light);
  color: var(--tp-blue-deep);
  font-size: 12.5px;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: var(--tp-radius-full);
}

.tp-p-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.tp-more-banner {
  margin-top: 44px;
  background: linear-gradient(90deg, var(--tp-blue-deep), var(--tp-blue));
  color: #fff;
  border-radius: var(--tp-radius-lg);
  padding: 26px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--tp-shadow-md);
}

.tp-more-banner b {
  font-family: 'Baloo Da 2', cursive;
  font-size: 22px;
  display: block;
}

.tp-more-banner span {
  font-size: 15px;
  opacity: 0.92;
}

/* ─── Lungi Section ─── */
.tp-lungi {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--tp-blue-deep), var(--tp-blue) 60%, #2B86D0);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.tp-lungi .paisley-bg {
  position: absolute;
  left: -70px;
  bottom: -40px;
  width: 380px;
  color: rgba(255, 255, 255, 0.09);
  transform: rotate(-14deg);
  pointer-events: none;
}

.tp-l-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
  position: relative;
}

.tp-lungi h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.34;
  margin: 16px 0 12px;
  color: #fff;
}

.tp-l-tagline {
  display: inline-block;
  background: var(--tp-red);
  padding: 7px 20px;
  border-radius: var(--tp-radius-sm);
  font-weight: 700;
  transform: rotate(-1.2deg);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.tp-l-list {
  margin: 26px 0 30px;
}

.tp-l-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 14px 0;
  font-size: 16px;
}

.tp-l-list .ic {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
}

.tp-l-list .ic svg {
  width: 20px;
  height: 20px;
}

.tp-l-list b {
  display: block;
  font-size: 16.5px;
}

.tp-l-list small {
  opacity: 0.88;
  font-size: 13.5px;
}

.tp-l-buy {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.tp-price-badge {
  width: 142px;
  height: 142px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--tp-red);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.28), 0 0 0 14px rgba(255, 255, 255, 0.12);
  line-height: 1.2;
}

.tp-price-badge small {
  font-size: 14px;
  font-weight: 600;
}

.tp-price-badge b {
  font-family: 'Baloo Da 2', cursive;
  font-size: 36px;
  font-weight: 800;
}

.tp-l-art {
  position: relative;
}

.tp-l-art::before {
  content: '';
  position: absolute;
  inset: -20px 22px 22px -20px;
  border: 3px dashed rgba(255, 255, 255, 0.55);
  border-radius: 28px;
}

.tp-l-art .tp-frame {
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.32);
}

.tp-chip-float.c3 {
  top: -16px;
  right: 18px;
  color: var(--tp-blue-deep);
  border-left: 4px solid var(--tp-red);
}

/* ─── Story Section ─── */
.tp-story {
  padding: 96px 0;
  background: #fff;
}

.tp-s-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.tp-s-art {
  position: relative;
}

.tp-s-art::before {
  content: '';
  position: absolute;
  inset: 20px -18px -18px 20px;
  border: 3px dashed var(--tp-red);
  border-radius: 28px;
}

.tp-s-art .tp-frame {
  box-shadow: 0 28px 65px rgba(183, 23, 14, 0.18);
}

.tp-story h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.34;
  margin: 16px 0 14px;
}

.tp-story p {
  color: var(--tp-muted);
  margin-bottom: 14px;
  font-size: 16.5px;
}

.tp-story blockquote {
  border-left: 5px solid var(--tp-red);
  background: var(--tp-paper);
  border-radius: 0 var(--tp-radius-md) var(--tp-radius-md) 0;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 600;
  color: var(--tp-blue-deep);
  margin: 22px 0 28px;
}

.tp-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.tp-stat-item {
  background: var(--tp-paper);
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius-md);
  padding: 20px 14px;
  text-align: center;
  transition: var(--tp-transition);
}

.tp-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--tp-shadow-sm);
  background: #fff;
}

.tp-stat-item b {
  font-family: 'Baloo Da 2', cursive;
  font-size: 32px;
  line-height: 1.2;
  display: block;
}

.tp-stat-item:nth-child(odd) b { color: var(--tp-red); }
.tp-stat-item:nth-child(even) b { color: var(--tp-blue-deep); }
.tp-stat-item span { font-size: 14px; color: var(--tp-muted); }

/* ─── Testimonials ─── */
.tp-reviews {
  padding: 88px 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(226, 35, 26, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
}

.tp-t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.tp-t-card {
  background: #fff;
  border-radius: var(--tp-radius-lg);
  padding: 30px 26px;
  border: 1px solid var(--tp-line);
  position: relative;
  transition: var(--tp-transition);
}

.tp-t-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tp-shadow-md);
  border-color: rgba(226, 35, 26, 0.3);
}

.tp-t-card::before {
  content: '\201C';
  position: absolute;
  top: 6px;
  right: 22px;
  font-family: 'Baloo Da 2', cursive;
  font-size: 78px;
  color: rgba(226, 35, 26, 0.14);
  line-height: 1;
}

.tp-stars {
  color: var(--tp-red);
  letter-spacing: 3px;
  font-size: 16px;
  margin-bottom: 12px;
}

.tp-t-card p {
  font-size: 15.5px;
  color: var(--tp-muted);
  line-height: 1.65;
}

.tp-t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.tp-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: 'Baloo Da 2', cursive;
  font-size: 20px;
}

.tp-avatar.a1 { background: var(--tp-blue); }
.tp-avatar.a2 { background: var(--tp-red); }
.tp-avatar.a3 { background: var(--tp-blue-deep); }

.tp-t-author b {
  display: block;
  font-size: 16px;
  line-height: 1.3;
}

.tp-t-author span {
  font-size: 13.5px;
  color: var(--tp-muted);
}

/* ─── Order & Contact Section ─── */
.tp-order {
  padding: 96px 0;
  background: #fff;
}

.tp-o-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.tp-form-card {
  background: var(--tp-paper);
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius-lg);
  padding: 36px;
}

.tp-f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.tp-form-group {
  margin-bottom: 18px;
}

.tp-form-group label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--tp-ink);
}

.tp-form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--tp-line);
  border-radius: var(--tp-radius-md);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--tp-ink);
  transition: var(--tp-transition);
}

.tp-form-control:focus {
  border-color: var(--tp-blue);
  box-shadow: 0 0 0 4px rgba(27, 117, 188, 0.14);
  outline: none;
}

.tp-form-note {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--tp-muted);
  margin-top: 16px;
}

.tp-form-note svg {
  width: 18px;
  height: 18px;
  color: var(--tp-blue-deep);
  flex-shrink: 0;
}

.tp-form-success {
  display: none;
  background: rgba(27, 117, 188, 0.12);
  border: 1px solid rgba(27, 117, 188, 0.4);
  color: var(--tp-blue-deep);
  border-radius: var(--tp-radius-md);
  padding: 16px 20px;
  margin-top: 18px;
  font-weight: 600;
}

.tp-c-card {
  background: linear-gradient(160deg, var(--tp-blue-deep), var(--tp-blue));
  color: #fff;
  border-radius: var(--tp-radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--tp-shadow-md);
}

.tp-c-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.tp-c-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 16px 0;
  font-size: 16px;
}

.tp-c-list .ic {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
}

.tp-c-list .ic svg {
  width: 20px;
  height: 20px;
}

.tp-c-list b {
  display: block;
}

.tp-c-list small {
  opacity: 0.88;
  font-size: 14px;
}

.tp-cod-chip {
  display: inline-block;
  background: var(--tp-red);
  border-radius: var(--tp-radius-sm);
  padding: 9px 20px;
  font-weight: 700;
  margin-top: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

/* ─── Footer ─── */
.tp-footer {
  background: var(--tp-navy);
  color: #C9D8E6;
}

.tp-f-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 64px 0 46px;
}

.tp-f-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.tp-f-brand .tp-brand-text b,
.tp-f-brand .tp-brand-text small {
  color: #fff;
}

.tp-f-top h4 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 18px;
}

.tp-f-top p {
  font-size: 15px;
  line-height: 1.7;
}

.tp-f-top ul li {
  margin: 10px 0;
  font-size: 15px;
}

.tp-f-top ul a {
  transition: var(--tp-transition);
}

.tp-f-top ul a:hover {
  color: #fff;
  padding-left: 6px;
}

.tp-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.tp-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  transition: var(--tp-transition);
  color: #fff;
}

.tp-socials a:hover {
  background: var(--tp-red);
  border-color: var(--tp-red);
  transform: translateY(-3px);
}

.tp-socials svg {
  width: 18px;
  height: 18px;
}

.tp-f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14.5px;
  color: #A9BFD4;
}

.tp-f-bottom .heart {
  color: #FF6B61;
}

/* ─── Floating Quick Action Buttons ─── */
.tp-float-actions {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tp-float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  transition: var(--tp-transition);
}

.tp-float-btn.whatsapp {
  background: #25D366;
}

.tp-float-btn.call {
  background: var(--tp-red);
}

.tp-float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.tp-float-btn svg {
  width: 24px;
  height: 24px;
}

/* ─── Responsive Media Queries ─── */
@media (max-width: 980px) {
  .tp-hero-grid,
  .tp-l-grid,
  .tp-s-grid,
  .tp-o-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .tp-f-top {
    grid-template-columns: 1fr 1fr;
  }

  .tp-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 65;
    padding: 80px 28px 40px;
    overflow-y: auto;
  }

  .tp-nav.open {
    right: 0;
  }

  .tp-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tp-nav a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    width: 100%;
    border-bottom: 1px solid var(--tp-line);
  }

  .tp-menu-btn {
    display: flex;
  }

  .tp-nav-cta {
    display: none;
  }

  .tp-chip-float.c1 { left: 6px; }
  .tp-chip-float.c2 { right: 6px; }

  .tp-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 51, 85, 0.4);
    backdrop-filter: blur(4px);
    z-index: 64;
  }

  .tp-nav-backdrop.open {
    display: block;
  }
}

@media (max-width: 640px) {
  .tp-f-row {
    grid-template-columns: 1fr;
  }

  .tp-f-top {
    grid-template-columns: 1fr;
  }

  .tp-topbar-in {
    justify-content: center;
    text-align: center;
  }

  .tp-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tp-form-card {
    padding: 24px 18px;
  }

  .tp-c-card {
    padding: 24px 18px;
  }
}

