/* PC PROSPECT — DATA DRIVEN MAIN CATEGORY TEMPLATE CSS */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.L_page {
  margin: 0;
  font-family: var(--page-font-family, Inter, Arial, sans-serif);
  color: var(--page-text-color, #101828);
  background: var(--page-background, #eef4ff);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

.L_page-shell {
  width: min(var(--content-width, 1180px), calc(100% - var(--page-gutter, 32px)));
  margin: 0 auto;
}



/* HEADER */

.L_topbar {
  position: relative;
  top: 0;
  z-index: 1000;
  background: var(--topbar-bg, transparent);
  backdrop-filter: blur(18px);
}

.L_topbar-inner {
  width: min(var(--header-inner-width, 1180px), calc(100% - var(--page-gutter, 32px)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: var(--header-inner-padding, 18px 20px);
  min-height: var(--header-inner-min-height, 100px);
  border: var(--header-inner-border, 1px solid rgba(15, 23, 42, .08));
  border-radius: var(--header-inner-radius, 0 0 26px 26px);
  background: var(--header-inner-bg, rgba(255, 255, 255, .76));
  box-shadow: var(--header-inner-shadow, 0 20px 60px rgba(15, 23, 42, .08));
}

.L_brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.L_brand-icon {
  width: var(--logo-icon-width, 60px);
  height: var(--logo-icon-height, 50px);
  border-radius: var(--logo-icon-radius, 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--logo-icon-color, #fff);
  font-size: var(--logo-icon-font-size, 26px);
  font-weight: 950;
  letter-spacing: -.01em;
  background: var(--logo-icon-bg, linear-gradient(135deg, #3b82f6, #4338ca));
  box-shadow: 0 10px 24px rgba(59, 130, 246, .22);
}

.L_brand-text {
  color: var(--logo-text-color, #111827);
  font-size: var(--logo-text-font-size, 26px);
  font-weight: var(--logo-text-weight, 800);
  letter-spacing: -.04em;
  line-height: 1;
}

.L_topnav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--nav-gap, 8px);
}

.L_topnav a,
.L_nav-dropbtn {
  border: 0;
  background: transparent;
  color: var(--nav-color, #475467);
  font-size: var(--nav-font-size, 14px);
  font-weight: var(--nav-font-weight, 800);
  padding: var(--nav-padding, 10px 12px);
  border-radius: var(--nav-radius, 999px);
  cursor: pointer;
}
.L_nav-dropbtn {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  white-space: nowrap;
}

.L_nav-dropbtn .L_nav-main-link {
  padding-right: 2px;
}

.L_nav-arrow {
  width: 16px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
}


/* Drop down menu start */
.L_topnav a:hover,
.L_nav-dropbtn:hover {
  background: var(--nav-hover-bg, #eff6ff);
  color: var(--nav-hover-color, #2563eb);
}

.L_nav-dropdown {
  position: relative;
  z-index: 220;
}

.L_guide-menu {
  position: absolute;
  top: 34px;
  right: 0;
  z-index: 999;
  width: var(--dropdown-width, 620px);
  padding: var(--dropdown-padding, 22px);
  display: grid;
  grid-template-columns: var(--dropdown-columns, repeat(2, 1fr));
  gap: var(--dropdown-gap, 10px 22px);
  background: var(--dropdown-bg, #fff);
  border: var(--dropdown-border, 1px solid rgba(15, 23, 42, .08));
  border-radius: var(--dropdown-radius, 24px);
  box-shadow: var(--dropdown-shadow, 0 24px 70px rgba(15, 23, 42, .16));
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .22s ease;
}

.L_nav-dropdown.is-open .L_guide-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.L_nav-dropdown:focus-within .L_guide-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .L_nav-dropdown:hover .L_guide-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.L_guide-menu a {
  padding: 10px 12px;
  border-radius: 14px;
}

.L_guide-menu a:hover {
  background: var(--dropdown-hover-bg, #f1f5f9);
}


/* Active navigation link */
.L_nav-active {
  color: #c2c2c2 !important;
  font-weight: 700;
  position: relative;
}

.L_nav-dropdown.L_nav-active .L_nav-main-link {
  color: #c2c2c2;
}

.L_nav-active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -6px;
  height: 3px;
  background: #22c55e; /* Change to your accent colour if you prefer */
  border-radius: 999px;
}

.L_nav-dropdown.L_nav-active::after {
  left: 12px;
  right: 34px;
}

/*Laptop Buying link */
/* Highlight the Laptop Buying Guide separately */
.L_guide-menu a[href$="laptop-buying-guide.html"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  margin-top: 8px;
  padding: 13px 14px;

  background: linear-gradient(135deg, #f5f3ff 0%, #eef2ff 100%);
  border: 1px solid #c4b5fd;
  border-radius: 14px;

  color: #5b21b6;
  font-weight: 800;

  box-shadow: 0 6px 16px rgba(91, 33, 182, 0.08);
  transition: 0.2s ease;
}

.L_guide-menu a[href$="laptop-buying-guide.html"]::after {
  content: "GUIDE";
  padding: 4px 7px;

  background: #7c3aed;
  border-radius: 999px;

  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
/*Laptop Buying link end */
/* Drop down menu - end */


.L_header-stats {
  display: flex;
  gap: 8px;
}

.L_header-stat {
  min-width: 72px;
  padding: 8px 10px;
  border: var(--stat-border, 1px solid rgba(15, 23, 42, .08));
  border-radius: var(--stat-radius, 16px);
  background: var(--stat-bg, #fff);
  text-align: center;
}

.L_header-stat strong {
  display: block;
  font-size: .92rem;
  color: var(--stat-value-color, #101828);
}

.L_header-stat span {
  display: block;
  font-size: .7rem;
  color: var(--stat-label-color, #667085);
  font-weight: 700;
}

/* HERO START */

.L_hero{
  padding:24px 0 34px;
  background:var(--hero-section-bg,#eef4ff);
}

.L_hero-inner{
  width:min(var(--content-width,1180px),calc(100% - var(--page-gutter,32px)));
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(380px,.88fr);
  gap:22px;
  align-items:stretch;
}

.L_hero-left{
  position:relative;
  overflow:hidden;
  min-width:0;
  min-height:410px;
  padding:44px 46px;
  border-radius:32px;
  background:var(
    --hero-left-bg,
    linear-gradient(135deg,#08111f 0%,#111827 48%,#172554 100%)
  );
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.L_hero-left::after{
  content:"";
  display:var(--hero-circle-display,block);
  position:absolute;
  right:var(--hero-circle-right,-90px);
  bottom:var(--hero-circle-bottom,-130px);
  width:var(--hero-circle-size,330px);
  height:var(--hero-circle-size,330px);
  border-radius:50%;
  background:var(--hero-circle-color,rgba(255,255,255,.09));
}

.L_hero-left > *{
  position:relative;
  z-index:2;
}

.L_hero-kicker{
  width:max-content;
  max-width:100%;
  margin-bottom:16px;
  padding:8px 13px;
  border-radius:999px;
  background:var(--hero-kicker-bg,rgba(255,255,255,.10));
  border:var(--hero-kicker-border,1px solid rgba(255,255,255,.14));
  color:var(--hero-kicker-color,#dbeafe);
  font-size:11px;
  line-height:1;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.L_hero-left h1{
  max-width:620px;
  margin:0 0 16px;
  color:var(--hero-title-color,#fff);
  font-size:clamp(2.25rem,4.4vw,4.25rem);
  line-height:.98;
  letter-spacing:-.065em;
}

.L_hero-left > p{
  max-width:590px;
  margin:0 0 22px;
  color:var(--hero-description-color,rgba(255,255,255,.78));
  font-size:1rem;
  line-height:1.65;
}

.L_hero-search{
  width:min(100%,520px);
  display:flex;
  gap:10px;
  padding:7px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
}

.L_hero-search input{
  flex:1;
  min-width:0;
  height:46px;
  padding:0 15px;
  border:0;
  outline:0;
  border-radius:13px;
  background:var(--hero-search-input-bg,#fff);
  color:var(--hero-search-input-color,#111827);
}

.L_hero-search button{
  flex:0 0 auto;
  min-width:104px;
  height:46px;
  padding:0 20px;
  border:0;
  border-radius:13px;
  background:var(--hero-search-btn-bg,#22c55e);
  color:var(--hero-search-btn-color,#fff);
  font-weight:900;
  cursor:pointer;
}

.L_hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
}

.L_hero-tags span{
  padding:8px 12px;
  border-radius:999px;
  background:var(--hero-tag-bg,rgba(255,255,255,.10));
  color:var(--hero-tag-color,#fff);
  font-size:12px;
  font-weight:800;
}

.L_hero-right{
  min-width:0;
  display:grid;
  grid-template-rows:1fr auto;
  gap:14px;
}

.L_hero-main-card{
  min-width:0;
  padding:20px;
  border-radius:32px;
  background:#fff;
  box-shadow:0 20px 55px rgba(15,23,42,.10);
  display:flex;
  flex-direction:column;
}

.L_hero-card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.L_hero-card-top span{
  padding:7px 10px;
  border-radius:999px;
  background:#fee2e2;
  color:#dc2626;
  font-size:12px;
  font-weight:900;
}

.L_hero-card-top strong{
  color:#16a34a;
  font-size:13px;
}

.L_hero-image{
  height:190px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:24px;
  background:transparent;
}

.L_hero-image img{
width:0%;
height:30%;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.L_hero-main-card h2{
  margin:15px 0 6px;
  color:#0f172a;
  font-size:1.5rem;
  line-height:1.08;
  letter-spacing:-.04em;
}

.L_hero-main-card > p{
  margin:0;
  color:#667085;
  font-size:.92rem;
  line-height:1.5;
}

.L_hero-main-card .L_affiliate-note{
  margin-top:7px;
   color:#f97316;
  font-size:.76rem;
  font-weight:700;
}

.L_hero-price-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  margin-top:auto;
  padding-top:16px;
}

.L_hero-price-row span{
  display:block;
  min-height:16px;
  margin-bottom:4px;
  color:#98a2b3;
  font-size:.84rem;
  text-decoration:line-through;
}

.L_hero-price-row strong{
  display:block;
  color:#0f172a;
  font-size:1.85rem;
  line-height:1;
  font-weight:950;
  letter-spacing:-.05em;
}

.L_hero-stats{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.L_hero-stats div{
  padding:16px;
  border-radius:22px;
  background:var(--hero-stat-bg,#fff);
  border:var(--hero-stat-border,1px solid #e2e8f0);
  text-align:center;
  box-shadow:var(--hero-stat-shadow,0 12px 28px rgba(15,23,42,.06));
}

.L_hero-stats strong{
  display:block;
  color:var(--hero-stat-value-color,#0f172a);
  font-size:1.18rem;
}

.L_hero-stats span{
  display:block;
  margin-top:3px;
  color:var(--hero-stat-label-color,#64748b);
  font-size:.76rem;
  font-weight:800;
}

/* HERO END */

/* COMMON COMPONENTS */

.L_hero-btn,
.L_button,
.L_card-btn,
.C_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--btn-min-height, 46px);
  padding: 0 18px;
  border: 0;
  border-radius: var(--btn-radius, 999px);
  background: var(--btn-bg, #111827);
  color: var(--btn-color, #fff);
  font-size: var(--btn-font-size, .84rem);
  font-weight: var(--btn-font-weight, 950);
  cursor: pointer;
  box-shadow: var(--btn-shadow, 0 14px 30px rgba(15, 23, 42, .18));
}

.L_voucher-button,
.C_voucher-button {
  background: var(--voucher-bg, #f97316) !important;
  color: var(--voucher-color, #fff) !important;
  border: var(--voucher-border, 2px dashed rgba(255, 255, 255, .8)) !important;
}

.L_hero-price-row span,
.L_old-price,
.L_card-old,
.C_old-price {
  display: block;
  min-height: 16px;
  line-height: 1.1;

 color: var(--old-price-color, #c1121f);
font-weight: 700;
  font-size: .86rem;
  text-decoration: line-through;
}

.L_hero-price-row strong,
.L_price,
.L_card-price,
.C_price {
  color: var(--price-color, #0f172a);
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.05em;
}


/* AFFILIATE */

.L_affiliateDisclosure-wrap {
  width: min(var(--content-width, 1180px), calc(100% - var(--page-gutter, 32px)));
  margin: 0 auto 18px;
}

.L_affiliate-box {
  padding: var(--affiliate-padding, 13px 16px);
  border: var(--affiliate-border, 1px solid rgba(15, 23, 42, .08));
  border-radius: var(--affiliate-radius, 18px);
  background: var(--affiliate-bg, #fff);
  color: var(--affiliate-color, #667085);
  font-size: var(--affiliate-font-size, .92rem);
}

.L_affiliate-box p {
  margin: 0;
}

.L_affiliate-box a {
  color: var(--affiliate-link-color, #2563eb);
  font-weight: 900;
}


/* SECTIONS */

.L_featured-wrap,
.L_deals-wrap,
.C_lower-main,
.L_newsletter-wrap {
  padding: var(--section-padding, 24px) 0;
}

.L_section-intro,
.L_section-head,
.C_content-head {
  margin-bottom: 18px;
}

.L_section-intro span {
  display: block;
  color: var(--intro-label-color, #2563eb);
  font-weight: 950;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.L_section-intro h2,
.L_section-head h2,
.C_content-head h2,
.C_guide h2,
.C_faq h2 {
  margin: 6px 0;
  color: var(--intro-heading-color, #0f172a);
  font-size: var(--intro-heading-size, clamp(1.65rem, 3vw, 2.35rem));
  letter-spacing: -.055em;
}

.L_section-intro p,
.L_section-head p {
  margin: 0;
  color: var(--intro-text-color, #667085);
}


/* FEATURED */

.L_featured-deal {
  display: grid;
  grid-template-columns: var(--featured-columns, 280px 1fr 190px);
  gap: 22px;
  align-items: center;
  padding: 18px;
  border-radius: var(--featured-radius, 34px);
  background: var(--featured-bg, #fff);
  border: var(--featured-border, 1px solid rgba(15, 23, 42, .08));
  box-shadow: var(--featured-shadow, 0 22px 55px rgba(15, 23, 42, .09));
}

.L_featured-img {
  height: 210px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: transparent;
}

.L_featured-img img {
  max-height: 175px;
  object-fit: contain;
}

.L_featured-content h3 {
  margin: 14px 0 10px;
  color: var(--card-title-color, #0f172a);
  font-size: 2rem;
  letter-spacing: -.055em;
}

.L_featured-content p {
  margin: 0;
  color: var(--card-text-color, #667085);
  line-height: 1.65;
}

.L_price-panel {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding: 18px;
  border-radius: 26px;
  background: var(--featured-price-panel-bg, #f8fafc);
}

.L_save {
  color: #16a34a;
  font-weight: 950;
}


/* DEAL CARDS */

.L_deal-grid,
.C_deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.L_deal-card,
.C_deal-card {
  display: flex;
  flex-direction: column;

  overflow: hidden;
  border-radius: var(--card-radius, 28px);
  background: var(--card-bg, #fff);
  border: var(--card-border, 1px solid rgba(15, 23, 42, .07));
  box-shadow: var(--card-shadow, 0 14px 36px rgba(15, 23, 42, .065));
  transition: transform .2s ease, box-shadow .2s ease;
}

.L_deal-card:hover,
.C_deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover-shadow, 0 22px 48px rgba(15, 23, 42, .11));
}

.L_card-img,
.C_deal-image {
  position: relative;
  height: 215px;
  margin: 12px 12px 0;
  display: grid;
  place-items: center;
  border-radius: var(--card-image-radius, 24px);
  background: transparent;
  overflow: hidden;
}

.L_card-img img,
.C_deal-image img {
  width: 94%;
  height: 94%;
  max-width: 100%;
  max-height: 178px;
  object-fit: contain;
  display: block;
}

.C_badge {
  position: absolute;
  top: 12px;
  right: 12px;
  max-width: calc(100% - 24px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  padding: 4px 10px;
  background: #ef4444;
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
}

.C_product-icon {
  width: 128px;
  height: 86px;
  border: 8px solid #1e293b;
  border-radius: 16px;
  position: relative;
}

.C_product-icon:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  width: 150px;
  height: 14px;
  border-radius: 999px;
  background: #1e293b;
}

.L_card-body,
.C_deal-body {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding: 18px;
}

.L_card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.L_shop,
.C_store {
  color: var(--store-color, #c1c1c1);
  font-weight: 950;
  font-size: .82rem;
}

.L_discount {
  padding: 6px 9px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #16a34a;
  font-weight: 950;
  font-size: .75rem;
}

.L_deal-card h3,
.C_deal-card h3 {
  margin: 0 0 9px;
  min-height: 56px;

  color: var(--card-title-color, #0f172a);
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -.04em;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
}
.L_deal-card p,
.C_deal-card p {
  margin: 0;
  min-height: 44px;

  color: var(--card-text-color, #667085);
  line-height: 1.55;
  font-size: .94rem;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

.L_card-price-row,
.C_card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;

  margin-top: auto;
  min-height: 64px;
}

.L_card-btn,
.C_btn {
  min-height: 42px;
  padding: 0 14px;
}

/* =========================================================
   CARD OVERFLOW PROTECTION START
   Keeps main, featured, big and small product cards from breaking
   ========================================================= */

.L_hero-main-card,
.L_featured-deal,
.L_deal-card,
.C_deal-card {
  min-width: 0;
}

.L_hero-image,
.L_featured-img,
.L_card-img,
.C_deal-image {
  overflow: hidden;
}

.L_hero-image img,
.L_featured-img img,
.L_card-img img,
.C_deal-image img {
  width: 94%;
  height: 94%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Featured & deal cards only */
.L_featured-content h3,
.L_deal-card h3,
.C_deal-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
  min-height: 2.36em;
}

/* Hero card title */
.L_hero-main-card h2 {
  margin: 0 0 4px;
  color: #0f172a;
  font-size: 1.5rem;
  line-height: 1.08;
  letter-spacing: -.04em;

  display: block;
  min-height: auto;
}

.L_deal-card p,
.C_deal-card p {
  min-height: 44px;
}
.L_card-price-row,
.C_card-bottom {
  min-height: 64px;
}
/* Old price keeps space even when empty */
.L_old-price,
.L_card-old,
.C_old-price {
  min-height: 16px;
}

/* Buttons stay controlled */
.L_hero-btn,
.L_button,
.L_card-btn,
.C_btn {
  white-space: nowrap;
  text-align: center;
}

/* Prevent long merchant/badge text breaking rows */
.L_shop,
.C_store,
.L_discount,
.C_badge {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================================================
   CARD OVERFLOW PROTECTION END
   ========================================================= */

/* LOWER */

.C_lower-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 22px;
  align-items: start;
}

.C_lower-layout.no-sidebar {
  grid-template-columns: 1fr;
}

.C_sidebar {
  position: sticky;
  top: 110px;
}

.C_side-box {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid var(--side-border-color, rgba(245, 158, 11, .18));
  background: var(--side-background, #fff7ed);
  box-shadow: var(--side-shadow, 0 18px 40px rgba(15, 23, 42, .08));
}

.C_side-box:before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--side-glow, rgba(251, 191, 36, .35));
}

.C_side-box h3 {
  position: relative;
  margin: 0 0 12px;
  color: var(--side-heading-color, #7c2d12);
  font-size: 1.1rem;
  letter-spacing: -.03em;
}

.C_side-box h3:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--side-accent-gradient, linear-gradient(90deg, #f97316, #f59e0b, #ef4444));
}

.C_side-link {
  position: relative;
  display: block;
  padding: 11px 12px;
  border-radius: 14px;
  color: var(--side-link-color, #78350f);
  font-weight: 850;
}

.C_side-link:hover {
  color: var(--side-hover-color, #fff);
  background: var(--side-hover-background, #f97316);
}

/* SIDE BOX page identify - link */
.C_side-link.C_side-active {
  color: #cbd5e1;
  text-decoration: underline;
  text-decoration-color: #22c55e;
  text-underline-offset: 5px;
}


.C_content {
  display: grid;
  gap: 28px;
}

.C_guide,
.C_faq {
  padding: 24px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
}

.C_guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.C_guide-card,
.C_faq-item {
  padding: 20px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .07);
}

.C_guide-card h3,
.C_faq-item h3 {
  margin: 0 0 8px;
  color: #0f172a;
  letter-spacing: -.03em;
}

.C_guide-card p,
.C_faq-item p {
  margin: 0;
  color: #667085;
  line-height: 1.6;
}

.C_faq-item + .C_faq-item {
  margin-top: 12px;
}


/* FOOTER START */

.C_footer {
  margin-top: 8px;
  overflow: hidden;
  color: var(--footer-text, #fff);
  background: var(--footer-bg, linear-gradient(135deg, #0f172a, #1e40af 55%, #2563eb));
}

.C_footer-inner {
  width: min(var(--content-width, 1180px), calc(100% - var(--page-gutter, 32px)));
  margin: 0 auto;
  padding: 36px 0 20px;
}

.C_footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr 1.15fr;
  gap: 30px;
  align-items: start;
}

.C_footer-brand {
  min-width: 0;
}

.C_footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 14px;
}

.C_footer-logo-icon {
  width: 48px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3b82f6, #4338ca);
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
}

.C_footer-logo-text {
  color: #ffffff;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.C_footer-description,
.C_footer-trust li,
.C_footer-newsletter p,
.C_footer-copy {
  color: var(--footer-muted, rgba(255,255,255,.72));
}

.C_footer-description {
  margin: 0;
  max-width: 340px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.6;
}

.C_footer-col h3,
.C_footer-newsletter h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.C_footer-links,
.C_footer-trust {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.C_footer-links a {
  color: var(--footer-link, rgba(255,255,255,.82));
  font-size: 15px;
  font-weight: 700;
  transition: .2s ease;
}

.C_footer-links a:hover {
  color: var(--footer-hover, #ffffff);
}

/* FOOTER Page idendify */
.C_footer-links a.C_footer-active {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #22c55e;
  text-underline-offset: 5px;
}

.C_footer-trust li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}



.C_footer-trust li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.C_footer-newsletter {
  padding: 15px 12px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}

.C_footer-newsletter h3 {
  margin-bottom: 10px;
}

.C_footer-newsletter p {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.C_footer-form {
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
}

.C_footer-form input,
.C_footer-form input[type="email"] {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 12px 16px;
  background: transparent;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
}

.C_footer-form input::placeholder {
  color: #64748b;
}

.C_footer-form button {
width: auto;
min-width: 90px;
height: 48px;
padding: 0 12px;
flex-shrink: 0;
border: 0;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg,#3b82f6,#2563eb);
color: #ffffff;
font-size: 14px;
font-weight: 900;
transition: .2s ease;
}

.C_footer-form button:hover {
  filter: brightness(1.08);
}

.C_footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--footer-border, rgba(255,255,255,.14));
}

.C_footer-copy {
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

/* FOOTER END */

/* RESPONSIVE */

@media (max-width: 1180px) {

  .L_topbar-inner {
    grid-template-columns: auto 1fr;
    gap: 18px;
  }

  .L_topnav {
    justify-content: flex-end;
    gap: 4px;
  }

  .L_header-stats {
    display: none;
  }

  .L_hero-inner,
  .C_lower-layout {
    grid-template-columns: 1fr;
  }

  .C_sidebar {
    position: static;
  }

  .L_featured-deal {
    grid-template-columns: 1fr;
  }

  .L_deal-grid,
  .C_deal-grid,
  .C_guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .C_footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 900px) {
  .L_topbar-inner {
    grid-template-columns: 1fr;
    padding: 14px 16px;
  }

  .L_brand {
    justify-content: center;
  }

  .L_topnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 6px;
  }

  .L_nav-arrow {
    width: 32px;
    height: 32px;
  }

  .L_guide-menu {
    top: calc(100% + 8px);
    right: auto;
    left: 50%;
    width: min(340px, calc(100vw - 32px));
    padding: 12px;
    grid-template-columns: 1fr;
    gap: 6px;
    transform: translate(-50%, 10px);
  }

  .L_nav-dropdown.is-open .L_guide-menu,
  .L_nav-dropdown:focus-within .L_guide-menu {
    transform: translate(-50%, 0);
  }
}

@media (max-width: 700px) {

  .L_topbar {
    position: relative;
  }

  .L_hero-left {
    min-height: auto;
    padding: 34px 22px;
    border-radius: 30px;
  }

  .L_hero-search,
  .C_footer-form {
    flex-direction: column;
  }

  .L_hero-search button {
    min-height: 48px;
  }

  .L_deal-grid,
  .C_deal-grid,
  .C_guide-grid,
  .C_footer-main,
  .L_hero-stats {
    grid-template-columns: 1fr;
  }

  .L_card-price-row,
  .C_card-bottom,
  .L_hero-price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .L_card-btn,
  .C_btn,
  .L_hero-btn,
  .L_button {
    width: 100%;
  }
}


