@charset "UTF-8";
:root {
  --side-padding-s: 50px;
  --side-padding-m: 7vw;
  --side-padding-l: 10vw;
  --side-padding-xl: 24vw;
  --edge: max(var(--side-padding-s), calc((100% - 1465px) / 2));
  --edge-reviews: max(var(--side-padding-s), calc((100% - 1161px) / 2));
  --edge-shop: max(var(--side-padding-s), calc((100% - 1421px) / 2));
}
@media (max-width: 900px) {
  :root {
    --side-padding-s: 30px;
    --side-padding-m: 5vw;
    --side-padding-l: 7vw;
    --side-padding-xl: 10vw;
  }
}
@media (max-width: 700px) {
  :root {
    --side-padding-s: 20px;
    --side-padding-m: 40px;
  }
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #1b1b1b;
  background-color: #ffffff;
}

/* ----------------------------------------------------------------
   WIP PASSWORD GATE
----------------------------------------------------------------- */
.gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(180deg, #edf9ff 0%, #bfe4fb 100%);
}

html.unlocked .gate {
  display: none;
}

.gate-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px;
  padding: 40px 34px;
  text-align: center;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.gate-card .gate-text {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #5a5a5a;
}
.gate-card .gate-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 15px;
  color: #000;
  background: #fff;
  border: 1px solid #c1c1c1;
  border-radius: 8px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
}
.gate-card .gate-input::-moz-placeholder {
  color: #cfcfcf;
}
.gate-card .gate-input::placeholder {
  color: #cfcfcf;
}
.gate-card .gate-input.invalid {
  border-color: #e0584f;
  box-shadow: inset 0 0 4px rgba(224, 88, 79, 0.4);
}
.gate-card .gate-btn {
  width: 100%;
  margin-top: 14px;
  padding: 12px 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, #7fce5a 0%, #54ac32 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.55), 0 1px 3px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: filter 0.2s ease-in-out;
}
.gate-card .gate-btn:hover {
  filter: brightness(1.05);
}
.gate-card .gate-error {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #e0584f;
}

/* ----------------------------------------------------------------
   SHARED SECTION HEADER
----------------------------------------------------------------- */
.section-head {
  text-align: center;
  padding: 0 var(--side-padding-s);
}
.section-head h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #000;
}
.section-head h2 .accent {
  color: #2867a6;
}
.section-head p {
  width: 80%;
  max-width: 460px;
  margin: 13px auto 0;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

/* ----------------------------------------------------------------
   NAV
----------------------------------------------------------------- */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--edge);
  background: #ffffff;
  box-shadow: 0px 0px 7.2px rgba(61, 61, 61, 0.48), inset 0px 0px 35px white, inset 0px 0px 18px #cfcfcf;
  z-index: 50;
}
header.site-header .brand {
  position: relative;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 226px;
  height: 81px;
  background: #f4f4f4;
  box-shadow: 0px 4px 9.8px rgba(0, 0, 0, 0.23);
}
header.site-header .brand .logo-rotator {
  position: relative;
  width: 170px;
  height: 60px;
}
header.site-header .brand .logo-rotator img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
header.site-header .brand .logo-rotator img.active {
  opacity: 1;
}
header.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 46px;
}
header.site-header .nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  text-shadow: 0px 0px 10.2px white;
  transition: opacity 0.2s ease-in-out;
}
header.site-header .nav-links a:hover {
  opacity: 0.55;
}
header.site-header .btn-duty-free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7fce5a 0%, #54ac32 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-shadow: none !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.55), 0 1px 3px rgba(0, 0, 0, 0.25);
}
header.site-header .btn-duty-free:hover {
  opacity: 0.92;
}
header.site-header .btn-duty-free svg {
  width: 15px;
  height: 16px;
}

/* ----------------------------------------------------------------
   FOOTER
----------------------------------------------------------------- */
footer.site-footer {
  margin-top: 22px;
  padding: 46px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f4f4f4;
  border-radius: 60px 60px 0 0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
}
footer.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
}
footer.site-footer .footer-links a {
  font-size: 15px;
  font-weight: 700;
  color: #342677;
  text-decoration: underline;
  transition: opacity 0.2s ease-in-out;
}
footer.site-footer .footer-links a:hover {
  opacity: 0.6;
}
footer.site-footer .footer-copy {
  margin: 20px 0 0;
  font-size: 15px;
  font-weight: 400;
  color: #342677;
}

/* ----------------------------------------------------------------
   PRODUCT CARD + GRID (shop grid & recommended products)
----------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 50px;
}

.product-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.product-card .pc-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fff;
}
.product-card .pc-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.product-card .pc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.13);
  pointer-events: none;
}
.product-card .pc-img .sold-out {
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: auto;
  z-index: 2;
}
.product-card .pc-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 11px;
}
.product-card .pc-name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #272727;
  line-height: 1;
}
.product-card .pc-tagline {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  color: #5a5a5a;
}
.product-card .pc-price {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #f10000;
}
.product-card.is-sold-out {
  cursor: default;
}
.product-card.is-sold-out .pc-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}
.product-card:not(.is-sold-out):hover .pc-img img {
  transform: scale(1.03);
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .product-grid {
    -moz-column-gap: 14px;
         column-gap: 14px;
    row-gap: 28px;
  }
  .product-card .pc-name,
  .product-card .pc-tagline,
  .product-card .pc-price {
    font-size: 12px;
  }
}
/* ----------------------------------------------------------------
   PAYMENTS (shop & product detail)
----------------------------------------------------------------- */
.shop-payments {
  display: flex;
  justify-content: center;
  margin: 70px 0;
}
.shop-payments img {
  width: auto;
  height: 45px;
}

/* ----------------------------------------------------------------
   SHARED RESPONSIVE (nav / footer / section header)
----------------------------------------------------------------- */
@media (max-width: 1080px) {
  header.site-header .brand {
    width: 188px;
    height: 81px;
  }
  header.site-header .brand .logo-rotator {
    width: 152px;
    height: 45px;
  }
  header.site-header .nav-links {
    gap: 18px;
  }
  header.site-header .nav-links a {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  header.site-header .nav-links a:not(.btn-duty-free) {
    display: none;
  }
}
@media (max-width: 600px) {
  header.site-header {
    height: 40px;
  }
  header.site-header .brand {
    width: 112px;
    height: 50px;
  }
  header.site-header .brand .logo-rotator {
    width: 90px;
    height: 26px;
  }
  header.site-header .btn-duty-free {
    padding: 6px 12px;
    font-size: 11px;
    gap: 4px;
  }
  header.site-header .btn-duty-free svg {
    width: 13px;
    height: 14px;
  }
  .section-head h2 {
    font-size: 15px;
  }
  .section-head p {
    font-size: 10px;
    margin-top: 6px;
  }
  footer.site-footer {
    margin-top: 0;
    padding: 46px 50px 30px;
  }
  footer.site-footer .footer-links {
    gap: 16px 18px;
  }
  footer.site-footer .footer-links a {
    font-size: 12px;
  }
  footer.site-footer .footer-copy {
    font-size: 8px;
  }
  .shop-payments {
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .shop-payments img {
    height: 34px;
  }
}
.cp-body {
  margin: 0;
  overflow: hidden;
  background: #d9c7ec;
}

.cp {
  position: fixed;
  inset: 0;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

/* Background video */
.cp-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* ----------------------------------------------------------------
   STAGE — centred anchor, fit-scaled, with 3D depth for the flip
----------------------------------------------------------------- */
.cp-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 10;
  perspective: 2600px;
  transform: scale(var(--fit, 1));
  transform-origin: center;
}

/* The phone. Coordinates are relative to the anchor (0,0 = screen centre),
   which is the centre of the CLOSED cover. */
.cp-phone {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translateY(0);
  transform-style: preserve-3d;
}

/* focus zoom runs at the same time as the cover flip (same duration, no
   delay) — for both opening and closing (power button). */
.cp.is-ready .cp-phone {
  transition: transform 0.7s ease;
}

.cp[data-state=open] .cp-phone {
  transform: scale(1.55) translateY(461px);
}

/* Bottom half (keypad) — fixed with its top at the hinge. Natural aspect. */
.cp-bottom {
  position: absolute;
  left: -125px;
  top: -238.8px;
  width: 250px;
  height: auto;
  border-radius: 40px 40px 0 0;
  filter: drop-shadow(0 0 26px rgba(255, 255, 255, 0.85));
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.cp.is-ready .cp-bottom {
  transition: border-radius 0.6s ease;
}

.cp[data-state=open] .cp-bottom {
  border-radius: 0;
}

/* Flipping cover — hinged at the TOP edge; front = closed cover, back = screen */
.cp-cover {
  position: absolute;
  left: -125px;
  top: -238.8px;
  width: 250px;
  height: 481px;
  z-index: 2;
  cursor: pointer;
  transform-origin: 50% 0%;
  transform: rotateX(0deg);
  transform-style: preserve-3d;
}

.cp.is-ready .cp-cover {
  transition: transform 0.7s ease;
}

.cp[data-state=open] .cp-cover {
  transform: rotateX(179.9deg);
  cursor: default;
  pointer-events: none;
}

.cp-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.cp-face > img {
  display: block;
  width: 100%;
  height: auto;
}

.cp-face--front {
  transform: scale(1.015);
}

.cp-face--back {
  transform: rotateX(180deg) translateY(0.5px);
}

/* Magic-hole video on the cover front. The video is a square with a silver
   ring + galaxy on black; clip to a circle and scale up so the ring fills it
   (hiding the black corners/margin). */
.cp-hole {
  position: absolute;
  left: 50%;
  top: 129px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  transform: translateX(-50%);
}

.cp-hole-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 128%;
  height: 128%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

/* ----------------------------------------------------------------
   CHROME — Home (top-left), Sound (bottom-right)
----------------------------------------------------------------- */
.cp-home {
  position: fixed;
  top: 6px;
  left: 10px;
  width: 80px;
  height: 80px;
  z-index: 20;
  transition: opacity 0.2s ease-in-out;
}

.cp-home img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cp-controls {
  position: fixed;
  right: 11px;
  bottom: 5px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cp-sound {
  width: 80px;
  height: 80px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

@media (hover: hover) {
  .cp-home:hover,
  .cp-sound:hover {
    opacity: 0.7;
  }
}
.cp-sound-on,
.cp-sound-off {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cp-sound-off {
  display: none;
}

.cp[data-muted=true] .cp-sound-on {
  display: none;
}

.cp[data-muted=true] .cp-sound-off {
  display: block;
}

/* ----------------------------------------------------------------
   POWER button (bottom-right cluster, next to sound)
----------------------------------------------------------------- */
.cp-power {
  width: 80px;
  height: 80px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

.cp-power img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (hover: hover) {
  .cp-power:hover {
    opacity: 0.7;
  }
}
/* press feedback — the button dips in like it's being pushed */
.cp-home,
.cp-sound,
.cp-power {
  transition: opacity 0.2s ease-in-out, transform 0.08s ease;
}

.cp-home:active,
.cp-sound:active,
.cp-power:active {
  transform: scale(0.9);
}

/* ================================================================
   PHONE "OS" — interactive screen on the flip-phone's top half.
   Rendered in a 377×598 coordinate space, scaled into the black
   screen rect of phone_top.png. Only interactive when open.
================================================================ */
.cp-os {
  position: absolute;
  left: 15px;
  top: 67px;
  width: 218px;
  height: 348px;
  overflow: hidden;
  pointer-events: none;
  backface-visibility: hidden;
}

.cp[data-state=open] .cp-os {
  pointer-events: auto;
}

.cp-os-inner {
  position: relative;
  width: 377px;
  height: 601px;
  transform: scale(0.57825);
  transform-origin: top left;
  display: flex;
  flex-direction: column;
  background: #fff;
  font-family: "Single Day", "Inter", sans-serif;
  overflow: hidden;
}

/* ---- Status bar ---- */
.cp-status {
  position: relative;
  z-index: 3;
  flex: 0 0 35px;
  display: flex;
  align-items: center;
  padding: 0 6px;
  background: linear-gradient(180deg, #ececec 6%, #e6e6e6 27%, #e8e8e8 37%, #cecece 86%);
  box-shadow: inset 0 1px 7px rgba(0, 0, 0, 0.25);
}

.cp-status-icons {
  flex: 0 0 auto;
  min-width: 0;
  height: 28px;
  width: auto;
}

.cp-status-time {
  margin-left: auto;
  padding-right: 6px;
  font-size: 22px;
  color: #4a4a4a;
  white-space: nowrap;
}

.cp-status-batt {
  flex: 0 0 auto;
  min-width: 0;
  height: 28px;
  width: auto;
}

/* ---- Views (swappable middle) ---- */
.cp-views {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}

.cp-view {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
}

.cp-os[data-screen=home] .cp-view--home,
.cp-os[data-screen=inbox] .cp-view--inbox,
.cp-os[data-screen=msg] .cp-view--msg,
.cp-os[data-screen=photo] .cp-view--photo,
.cp-os[data-screen=video] .cp-view--video {
  display: flex;
}

/* ---- Pink title bar (Inbox / View Msg / View Photo) ---- */
.cp-titlebar {
  position: relative;
  flex: 0 0 60px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ff9ed4 0%, #ff6fb8 55%, #ff8ec8 100%);
  color: #fff;
  font-family: "Pixelify Sans", monospace;
  font-size: 28px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 5px #fff, inset 0 1px 6px rgba(0, 0, 0, 0.3);
}

.cp-titlebar--nav {
  justify-content: space-between;
  padding: 0 10px;
}

.cp-tb-arrow {
  flex: 0 0 34px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.cp-tb-arrow::before {
  content: "";
  display: block;
  width: 16px;
  height: 26px;
  margin: 0 auto;
  background: #fff;
  clip-path: polygon(100% 0, 45% 50%, 100% 100%, 70% 100%, 15% 50%, 70% 0);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.cp-tb-next::before {
  transform: scaleX(-1);
}

.cp-titlebar--nav span {
  flex: 1;
  text-align: center;
}

/* ---- HOME ---- */
.cp-view--home {
  overflow: hidden;
  background: url("/assets/5_CandyPinkMagicHoleFlipPhone/1_Graphics/WallPaper.jpg") center/cover no-repeat;
}

.cp-clock {
  position: relative;
  margin: 78px 0 0;
  text-align: center;
  font-family: "Pixelify Sans", monospace;
  font-size: 84px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 3px 6px rgba(196, 108, 168, 0.55), 0 0 2px #fff;
}

.cp-weather {
  position: relative;
  text-align: center;
  font-family: "Pixelify Sans", monospace;
  font-size: 16px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(196, 108, 168, 0.5);
}

/* ---- INBOX ---- */
.cp-view--inbox {
  background: #fff;
}

.cp-inbox-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ff89c1 #ededed;
}

.cp-inbox-scroll::-webkit-scrollbar {
  width: 11px;
}

.cp-inbox-scroll::-webkit-scrollbar-track {
  background: #ededed;
}

.cp-inbox-scroll::-webkit-scrollbar-thumb {
  background: #ff89c1;
  border-radius: 2px;
}

.cp-inbox-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cp-inbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 63px;
  padding: 0 12px;
  border-bottom: 2px solid #cfcfcf;
  background: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.cp-inbox-num {
  flex: 0 0 33px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff89c1;
  color: #fff;
  font-family: "Pixelify Sans", monospace;
  font-size: 22px;
  box-shadow: 1px 1px 0 #000;
}

.cp-inbox-env {
  flex: 0 0 30px;
  min-width: 0;
  width: 30px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.cp-inbox-subj {
  flex: 1;
  min-width: 0;
  font-size: 28px;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- MESSAGE DETAIL ---- */
.cp-view--msg {
  background: linear-gradient(180deg, #f0f0f0, #dedede);
  align-items: center;
}

.cp-msg-box {
  position: relative;
  width: 345px;
  flex: 1;
  margin: 16px 0;
  background: #fff;
  border: 2px solid #ffaaea;
  overflow: hidden;
}

.cp-msg-body {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 18px 20px;
  font-size: 32px;
  line-height: 1.15;
  color: #000;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "Single Day", monospace;
}

.cp-msg-sm {
  font-size: 20px;
}

.cp-msg-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.cp-msg-env {
  position: absolute;
  right: 16px;
  bottom: 12px;
  width: 150px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

/* ---- PHOTO ---- */
.cp-view--photo {
  background: linear-gradient(180deg, #f0f0f0, #dedede);
}

.cp-photo-area {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d2d2d2;
  margin: 24px 0;
  overflow: hidden;
}

.cp-photo-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cp-photo-dl {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.cp-photo-dl img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ---- VIDEO (placeholder) ---- */
.cp-view--video {
  background: #fff;
}

.cp-video-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6fb8;
  font-size: 30px;
}

/* ---- Nav bar ---- */
.cp-nav {
  flex: 0 0 54px;
  display: flex;
  background: linear-gradient(180deg, #ff9ed4 0%, #ff73ba 55%, #ff8ec8 100%);
  box-shadow: inset 0 0 5px #fff, inset 0 1px 6px rgba(0, 0, 0, 0.3);
}

.cp-nav-item {
  flex: 1;
  border: none;
  background: none;
  color: #fff;
  font-family: "Single Day", cursive;
  font-size: 25px;
  cursor: pointer;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: filter 0.15s ease;
}

@media (hover: hover) {
  .cp-nav-item:hover {
    filter: brightness(1.1);
  }
}
.cp-os[data-screen=home] .cp-nav-item[data-nav=home],
.cp-os[data-screen=inbox] .cp-nav-item[data-nav=inbox],
.cp-os[data-screen=msg] .cp-nav-item[data-nav=inbox],
.cp-os[data-screen=photo] .cp-nav-item[data-nav=photo],
.cp-os[data-screen=video] .cp-nav-item[data-nav=video] {
  background: rgba(255, 255, 255, 0.25);
}

/* ================================================================
   RESPONSIVE — tablet / mobile (Figma artboards 834×1154 / 402×735).
   The phone is 250px in every artboard; JS fit-scales the scene per
   breakpoint. Here we set the open-focus zoom + chrome sizes to match.
================================================================ */
@media (max-width: 1080px) {
  /* open focus: black-screen 218 → tablet screen ~396 (×1.82) */
  .cp[data-state=open] .cp-phone {
    transform: scale(1.82) translateY(461px);
  }
  .cp-home {
    top: 0;
    left: 2px;
  }
  .cp-controls {
    right: 3px;
    bottom: 0;
    gap: 0;
  }
}
@media (max-width: 600px) {
  /* open focus: black-screen 218 → mobile screen ~354 (×1.62) */
  .cp[data-state=open] .cp-phone {
    transform: scale(1.62) translateY(461px);
  }
  .cp-home {
    top: 0;
    left: 2px;
    width: 50px;
    height: 50px;
  }
  .cp-controls {
    right: 7px;
    bottom: 8px;
    gap: 0;
  }
  .cp-sound,
  .cp-power {
    width: 50px;
    height: 50px;
  }
  .cp-nav-item {
    font-size: 21px;
  }
}/*# sourceMappingURL=page_candypink.css.map */