/* portable-tv.css */
@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600;700;800;900&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.aihome-container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

/* ===================== TOKENS ===================== */
:root {
    --ptv-font: "Gabarito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

    --ptv-black: #131313;
    --ptv-ink: #111111;
    --ptv-muted: #6b6b6b;
    --ptv-line: #e9e9e9;
    --ptv-soft: #f6f6f6;
    --ptv-white: #ffffff;

    --ptv-container: 1240px;

    --ptv-radius-xl: 22px;
    --ptv-radius-lg: 18px;
    --ptv-radius-md: 14px;

    --ptv-shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
    --ptv-shadow-card: 0 10px 24px rgba(0, 0, 0, 0.12);

    --ptv-hero-h: 520px;

    --ptv-gap-xl: 48px;
    --ptv-gap-lg: 34px;
    --ptv-gap-md: 22px;
    --ptv-gap-sm: 14px;

    --ptv-title: clamp(44px, 5vw, 64px);
    --ptv-h2: 36px;
    --ptv-p: 20px;

    --ptv-nav: 13px;

    --ptv-hero-pad-top: 26px;
    --ptv-hero-pad-bottom: 40px;
}

/* ===================== BASE ===================== */
* {
    box-sizing: border-box;
}

.ptvBody {
    margin: 0;
    font-family: var(--ptv-font);
    color: var(--ptv-ink);
    background: var(--ptv-white);
}

.ptvPageWrap {
    width: 100%;
    overflow-x: clip;
}

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

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

button {
    font-family: inherit;
}


/* ===================== HEADER ===================== */


.aihome-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.aihome-header__logo {
  font-size: 26px;
  letter-spacing: -0.6px;
}

.aihome-header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.aihome-header__link {
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.9;
}

.aihome-header__link:hover {
  opacity: 1;
}

.aihome-header__search {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.aihome-header__searchIcon {
  font-weight: 900;
}

/* =========================================
   HEADER & NAV
========================================= */
.fade-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  margin-top: -100px;
}

.logo img {
  height: 38px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 40px;
  margin-left: auto;
  margin-right: 40px;
}

nav a {
  text-decoration: none;
  color: var(--black);
  font-size: 14px;
  text-transform: capitalize;
  opacity: .9;
}

nav a:hover {
  color: var(--red);
  opacity: 1;
}

.search-icon svg {
  width: 22px;
  height: 22px;
  cursor: pointer;
  color: var(--black);
}

/* container helper */
.ptvHeader__inner,
.ptvHero__inner,
.ptvFeatureBlock__inner,
.ptvLifestyle__inner,
.ptvFooter__inner,
.ptvFooter__bottomInner {
    width: min(var(--ptv-container), calc(100% - 48px));
    margin-inline: auto;
}

/* Standardized Header overrides for dark background */
.ptvHero .fade-in nav a,
.ptvHero .fade-in .search-icon svg {
    color: #fff !important;
}

.ptvHero .fade-in nav a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ===================== HERO ===================== */
.ptvHero {
    background: #1b1b1b;
    color: var(--ptv-white);
    padding-top: calc(78px + var(--ptv-hero-pad-top));
    padding-bottom: var(--ptv-hero-pad-bottom);
    position: relative;
    height: 530px;
}

.ptvHero__inner {
    min-height: var(--ptv-hero-h);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: var(--ptv-gap-xl);
    margin-top: 30px;
}

.ptvHero__left {
    position: relative;
    margin-left: 70px;
}

.ptvHero__title {
    margin: 0;
    font-size: 96px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: -60px;
    margin-left: 0;
}

.ptvHero__decorWrap {
    position: relative;
    width: 100%;
}

.ptvHero__decor {
    position: absolute;
    right: 50px;
    top: -260px;
    width: 15%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ptvHero__decorTri {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 16px solid rgba(255, 255, 255, 0.9);
    transform: rotate(-12deg);
    opacity: 0.95;
}

.ptvHero__decorTri--red {
    border-bottom-color: #e13b3b;
    transform: rotate(16deg);
}

.ptvHero__tabletWrap {
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
    width: 440px;
    max-width: 120%;
    position: relative;
    border-radius: 18px;
    z-index: 5;
}

.ptvHero__tabletImg {
    width: 50%;
    border-radius: 18px;
    margin-left: 80px;
    margin-top: -30px;
    box-shadow: var(--ptv-shadow-card);
}

.ptvHero__tabletPlay {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 84px;
    height: 84px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
    display: grid;
    place-items: center;
    transition: 0.18s ease;
}

.ptvHero__tabletPlay:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.34);
}

.ptvHero__tabletPlayIcon {
    width: 0;
    height: 0;
    border-left: 20px solid rgba(255, 255, 255, 0.95);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.ptvHero__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    padding-right: 140px;
    margin-top: -180px;
}

.ptvHero__productShowcase {
    position: relative;
    width: min(530px, 110%);
    display: grid;
    justify-items: end;
    z-index: 2;
}

.ptvHero__productImg {
    width: 110%;
    max-width: 420px;
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.35));
}

.ptvHero__productThumbs {
    position: absolute;
    top: 12px;
    right: 24px;
    display: grid;
    gap: 14px;
}

.ptvHero__thumbImg {
    width: 150px;
    border-radius: 12px;
    box-shadow: 0 14px 22px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.08);
}

/* ===================== FEATURE BLOCKS (LEFT/RIGHT UI) ===================== */
.ptvFeatureBlock {
    padding: 58px 0;
}

.ptvFeatureBlock__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--ptv-gap-xl);
    margin-top: 20px;
}

.ptvFeatureBlock__media {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ptvFeatureBlock__media--left .ptvFeatureBlock__mediaImg {
    max-width: 570px;
}

.ptvFeatureBlock__media--right {
    justify-content: flex-end;
}

.ptvFeatureBlock__media--right .ptvFeatureBlock__mediaImg {
    max-width: 570px;
}

.ptvFeatureBlock__mediaImg {
    width: 100%;
    max-width: 520px;
    border-radius: var(--ptv-radius-xl);
    box-shadow: var(--ptv-shadow-soft);
}

.ptvFeatureBlock__content {
    max-width: 520px;
}

.ptvFeatureBlock__content--left {
    justify-self: start;
}

.ptvFeatureBlock__lineTitle {
    position: relative;
    display: inline-block;
}

.ptvFeatureBlock__content--right .ptvFeatureBlock__lineTitle {
    margin-left: 125px;
}

.ptvFeatureBlock__line {
    position: absolute;
    height: 2px;
    background: #000000;
    top: 50%;
    transform: translateY(-50%);
}

.ptvFeatureBlock__line--right {
    right: 100%;
    margin-right: 16px;
    width: 110px;
}

.ptvFeatureBlock__line--left {
    left: 110%;
    margin-left: 16px;
    width: 110px;

}

.ptvFeatureBlock__title {
    margin: 0;
    font-size: var(--ptv-h2);
    font-weight: 500;
    letter-spacing: -0.6px;
    text-transform: uppercase;
    color: var(--ptv-ink);
}

.ptvFeatureBlock__desc {
    margin: 12px 0 0 0;
    font-size: var(--ptv-p);
    line-height: 1.65;
    color: var(--ptv-muted);
    max-width: 420px;
}

.ptvFeatureBlock__desc--right {
    margin-left: 125px;
}

.ptvFeatureBlock__desc--left {
    margin-left: 0;
}

/* reverse layout spacer overrides removed as absolute line positioning handles them standalone */

/* specific blocks spacing similar to UI */
.ptvFeatureBlock--share {
    padding-top: 64px;
}

.ptvFeatureBlock--battery .ptvFeatureBlock__mediaImg {
    max-width: 560px;
}

.ptvFeatureBlock--rotate .ptvFeatureBlock__mediaImg {
    max-width: 560px;
}

.ptvFeatureBlock--camera {
    padding-bottom: 46px;
}

/* ===================== LIFESTYLE GRID ===================== */
.ptvLifestyle {
    padding: 34px 0 66px;
}

.ptvLifestyle__title {
    margin: 0 0 18px 0;
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.ptvLifestyle__grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 18px;
}

.ptvLifestyle__card {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ptvLifestyle__cardImg {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 20px;
}

.ptvLifestyle__cardCaption {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--ptv-ink);
    text-transform: uppercase;
    text-align: center;
}

/* ===================== FOOTER ===================== */
.aihome-footer {
    margin-top: 24px;
    background: #121212;
    color: rgba(255, 255, 255, 0.85);
    padding: 26px 0;
}

.aihome-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.aihome-footer__brand {
    font-weight: 900;
    font-size: 24px;
    color: #fff;
}

.aihome-footer__meta,
.aihome-footer__contact {
    margin-top: 10px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
}

.aihome-footer__copy {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.aihome-footer__center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 0 20px;
}

.aihome-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.aihome-footer__lineBtn {
    background: #06c755;
    /* Line standard green */
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    border-radius: 999px;
    padding: 6px 18px;
    margin-bottom: 2px;
}

.aihome-footer__qr {
    display: grid;
    gap: 6px;
    justify-items: center;
}

.aihome-footer__qr img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #fff;
    padding: 2px;
    background: #fff;
}

.aihome-footer__qrText {
    font-size: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
}