:root {
  --color-primary: #0d2f66;
  --color-primary-deep: #082246;
  --color-accent: #f4a300;
  --color-accent-soft: #ffd46b;
  --color-surface: #ffffff;
  --color-background: #f4f7fb;
  --color-text: #10213e;
  --color-text-soft: #60708b;
  --color-border: rgba(16, 33, 62, 0.10);
  --shadow-soft: 0 12px 30px rgba(9, 26, 58, 0.08);
  --shadow-header: 0 8px 24px rgba(6, 18, 42, 0.16);
  --radius-card: 20px;
  --radius-soft: 14px;
  --container-width: 1200px;
  --header-height: 96px;
  --font-stack: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-stack);
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

ul {
  margin: 0;
  padding-left: 20px;
}

.container {
  width: min(100% - 56px, var(--container-width));
  margin: 0 auto;
}

/* =========================
   MOBILE HEADER PARTS
========================= */

.mobile-brand-row,
.mobile-utility-bar,
.mobile-dial-bar {
  display: none;
}

/* =========================
   DESKTOP + GLOBAL HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
}

.header-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-deep) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-header);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 250px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
}

.brand-logo {
  width: 252px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.desktop-nav a {
  position: relative;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  opacity: 1;
  color: var(--color-accent-soft);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  width: 100%;
}

.shop-link {
  padding: 10px 16px !important;
  border-radius: 999px;
  background: var(--color-accent);
  color: #1a1a1a !important;
  font-weight: 700 !important;
}

.shop-link::after {
  display: none;
}

/* =========================
   MAIN
========================= */

.site-main {
  padding-bottom: 64px;
}

.hero-shell {
  padding: 64px 0 32px;
}

.inner-hero-shell {
  padding-top: 44px;
  padding-bottom: 24px;
}

.hero-card,
.content-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  padding: 46px;
}

.home-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(300px, 0.82fr);
  gap: 32px;
  align-items: stretch;
}

.content-shell {
  padding: 0 0 32px;
}

.content-card {
  padding: 34px;
}

.inner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.95fr) minmax(300px, 0.92fr);
  gap: 32px;
  align-items: start;
}

.inner-main-column,
.inner-side-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.side-card {
  position: sticky;
  top: 128px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--color-text);
}

h1 {
  margin-bottom: 14px;
  font-size: 44px;
  line-height: 1.1;
}

h2 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.2;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.2;
}

.lead {
  max-width: 760px;
  margin: 0;
  color: var(--color-text-soft);
  font-size: 18px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-1px);
}

.hero-btn-primary {
  background: var(--color-accent);
  color: #1a1a1a;
}

.hero-btn-primary:hover {
  opacity: 0.94;
}

.hero-btn-secondary {
  border: 1px solid rgba(13, 47, 102, 0.16);
  background: #ffffff;
  color: var(--color-primary);
}

.hero-btn-secondary:hover {
  background: #f8fbff;
}

.hero-highlight-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(13, 47, 102, 0.06) 0%, rgba(13, 47, 102, 0.10) 100%);
  border: 1px solid rgba(13, 47, 102, 0.10);
}

.highlight-label {
  margin: 0 0 10px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-highlight-card h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.hero-highlight-card p {
  margin: 0;
  color: var(--color-text-soft);
}

.inner-hero-card {
  padding: 30px 36px;
}

.inner-hero-card h1 {
  margin-bottom: 12px;
  font-size: 36px;
  line-height: 1.1;
}

.inner-hero-card .lead {
  max-width: 680px;
  font-size: 17px;
}

.home-content-shell {
  padding-top: 8px;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.feature-card {
  min-height: 100%;
  padding-top: 36px;
  padding-bottom: 36px;
}

.text-link {
  color: var(--color-primary);
  font-weight: 700;
}

.text-link:hover {
  color: var(--color-accent);
}

.home-sections-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.section-tile {
  display: block;
  min-height: 100%;
  padding: 24px 22px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(244, 247, 251, 1) 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.section-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(13, 47, 102, 0.18);
}

.section-tile h3 {
  margin-bottom: 10px;
}

.section-tile p {
  margin: 0;
  color: var(--color-text-soft);
}

.home-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.home-list li {
  color: var(--color-text-soft);
  margin-bottom: 10px;
}

.content-card p,
.footer-brand p,
.footer-column a,
.footer-bottom p {
  color: var(--color-text-soft);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  margin-top: 64px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, #0a2144 0%, #06172f 100%);
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.95fr);
  gap: 56px;
  padding: 56px 0 36px;
}

.footer-kicker {
  margin: 0 0 10px;
  color: var(--color-accent-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand h2,
.footer-column h3 {
  color: #ffffff;
}

.footer-brand h2 {
  margin-bottom: 14px;
  font-size: 30px;
}

.footer-brand p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--color-accent-soft);
  transform: translateX(2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.footer-bottom-note {
  text-align: right;
}

/* =========================
   ROTARY BASE
========================= */

.mobile-rotary-wrap {
  --menu-max: 720px;
  --size: min(86vw, 86vh, var(--menu-max));
  display: grid;
  place-items: center;
  width: 100%;
  padding: 8px 0 2px;
  overflow: hidden;
}

.menu {
  position: relative;
  width: var(--size);
  height: var(--size);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  filter: drop-shadow(0 24px 58px rgba(2, 10, 24, 0.34));
}

.base-art,
.rotor,
.rotor svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.base-art {
  overflow: visible;
}

.rotor {
  transform-origin: 50% 50%;
  will-change: transform;
  cursor: pointer;
}

.rotor.dragging {
  cursor: grabbing;
}

.go {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24.5%;
  height: 24.5%;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  transition: box-shadow .18s ease, transform .18s ease, filter .18s ease;
  background:
    radial-gradient(circle at 34% 22%, #fffef8 0%, #fff3c5 18%, var(--color-accent-soft) 34%, #ffc94e 52%, var(--color-accent) 68%, #c47c00 100%);
  box-shadow:
    0 0 0 4px rgba(255, 226, 136, .96),
    0 0 30px rgba(244, 163, 0, .34),
    0 14px 34px rgba(4, 14, 33, .26),
    inset 0 10px 18px rgba(255, 255, 255, .46),
    inset 0 -12px 18px rgba(110, 74, 7, .24);
}

.go::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 232, 156, .88);
  box-shadow:
    0 0 18px rgba(255, 212, 107, .42),
    0 0 32px rgba(244, 163, 0, .24);
  pointer-events: none;
}

.go::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, .62), rgba(255, 255, 255, 0) 54%),
    linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.go span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(24px, 5vw, 54px);
  font-weight: 800;
  color: #14325e;
  letter-spacing: .06em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .44), 0 0 10px rgba(255, 248, 214, .18);
  pointer-events: none;
}

.go:hover {
  filter: saturate(1.06) brightness(1.03);
  box-shadow:
    0 0 0 4px rgba(255, 215, 104, .98),
    0 0 32px rgba(244, 163, 0, .36),
    0 16px 34px rgba(4, 14, 33, .30),
    inset 0 6px 14px rgba(255, 255, 255, .42),
    inset 0 -10px 16px rgba(0, 0, 0, .18);
}

.go:active {
  transform: translate(-50%, -50%) scale(.985);
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-fallback-nav {
  display: none;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991.98px) {
  .container {
    width: min(100% - 24px, 100%);
  }

  .header-shell {
    display: none;
  }

  .mobile-brand-row,
  .mobile-utility-bar,
  .mobile-dial-bar {
    display: block;
  }

  .site-header {
    background: transparent;
  }

  .mobile-brand-row {
    overflow: hidden;
    max-height: 76px;
    opacity: 1;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%),
      linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-deep) 100%);
    transition: max-height 0.24s ease, opacity 0.18s ease;
  }

  .mobile-brand-row.brand-hidden {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-brand-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
  }

  .mobile-brand-logo {
    width: min(100%, 190px);
    height: auto;
    border-radius: 10px;
  }

  .mobile-utility-bar {
    background: linear-gradient(180deg, #0a2144 0%, #071a35 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-utility-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .mobile-utility-inner a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 0;
    white-space: nowrap;
  }

  .mobile-utility-inner a.is-active {
    color: var(--color-accent-soft);
  }

  .mobile-shop-link {
    color: var(--color-accent-soft) !important;
  }

  .mobile-dial-bar {
    padding: 10px 0 12px;
    background: linear-gradient(180deg, #0b244a 0%, #081d3d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(4, 14, 33, 0.16);
  }

  .mobile-dial-bar.is-open {
    box-shadow: 0 18px 40px rgba(4, 14, 33, 0.24);
  }

  .mobile-dial-inner {
    display: flex;
    align-items: center;
  }

  .mobile-dial-toggle {
    width: 100%;
    min-height: 44px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
  }

  .mobile-dial-toggle-left {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .mobile-dial-toggle-center {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
  }

  .mobile-dial-toggle-right {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    justify-content: flex-end;
    gap: 8px;
    min-width: 68px;
  }

  .mobile-dial-toggle-status {
    display: inline-block;
    min-width: 40px;
    text-align: right;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent-soft);
  }

  .mobile-dial-toggle-icon {
    font-size: 16px;
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .mobile-dial-bar.is-open .mobile-dial-toggle-icon {
    transform: rotate(180deg);
  }

  .mobile-dial-panel {
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-height: calc(100svh - 120px);
    overflow-y: auto;
  }

  .mobile-dial-panel[hidden] {
    display: none !important;
  }

  .mobile-fallback-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-bottom: 4px;
  }

  .mobile-fallback-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
  }

  .mobile-fallback-nav a.is-active {
    color: var(--color-accent-soft);
    border-color: rgba(255, 212, 107, 0.38);
  }

  html.rotary-disabled .mobile-rotary-wrap {
    display: none;
  }

  html.rotary-disabled .mobile-fallback-nav {
    display: grid;
  }

  .site-main {
    padding-bottom: 40px;
  }

  .hero-shell {
    padding: 24px 0 16px;
  }

  .inner-hero-shell {
    padding-top: 20px;
    padding-bottom: 16px;
  }

  .hero-card {
    padding: 24px 18px;
  }

  .home-hero-card,
  .home-feature-grid,
  .home-sections-grid,
  .home-split-grid,
  .inner-layout,
  .footer-inner,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .home-hero-card,
  .inner-layout,
  .home-sections-grid,
  .home-split-grid {
    gap: 20px;
  }

  .content-shell {
    padding: 0 0 18px;
  }

  .content-card {
    padding: 22px 18px;
  }

  .feature-card {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  h1 {
    font-size: 30px;
  }

  .inner-hero-card h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 23px;
  }

  .lead,
  .inner-hero-card .lead {
    font-size: 15px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-highlight-card {
    padding: 20px 18px;
  }

  .side-card {
    position: static;
  }

  .site-footer {
    margin-top: 38px;
  }

  .footer-inner {
    gap: 30px;
    padding: 34px 0 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-note {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .site-header {
    background: transparent;
  }

  .header-shell {
    display: block;
  }
}

@media (max-width: 720px) {
  .mobile-rotary-wrap {
    --size: min(85vw, 85vh, 640px);
  }
}

@media (max-width: 420px) {
  .mobile-rotary-wrap {
    --size: min(84vw, 84vh, 520px);
  }

  .mobile-brand-logo {
    width: min(100%, 178px);
  }

  h1 {
    font-size: 28px;
  }

  .inner-hero-card h1 {
    font-size: 26px;
  }
}
/* =========================
   SHOP BRIDGE v2.0
========================= */

:root {
  --pinoy-red: #d32f2f;
  --pinoy-dark: #1a1a1a;
  --pinoy-gray: #f4f4f4;
}

.bridge-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.shop-hero-card {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: linear-gradient(180deg, #fffefc 0%, #fff8f4 100%);
  padding: 42px;
  border-radius: 20px;
  border-top: 5px solid var(--pinoy-red);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.shop-hero-main {
  flex: 1;
  min-width: 300px;
}

.shop-hero-side {
  flex: 0 0 300px;
  background: linear-gradient(180deg, #fff3ec 0%, #fff9f5 100%);
  padding: 26px;
  border-radius: 16px;
  border: 1px solid rgba(211, 47, 47, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.shop-title {
  margin: 0 0 18px;
  font-size: 2.55rem;
  line-height: 1.08;
}

.shop-title a {
  color: var(--pinoy-dark);
  text-decoration: none;
}

.shop-title a:hover {
  color: var(--pinoy-red);
}

.shop-intro {
  margin: 0;
  max-width: 760px;
  font-size: 1.18rem;
  color: #5a5a5a;
  line-height: 1.7;
}

.shop-hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.shop-side-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.shop-side-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.08));
}

.shop-side-text {
  margin: 0;
  color: #5e5e5e;
  line-height: 1.75;
}

.brand-strip {
  background: linear-gradient(180deg, #fff 0%, #fffaf7 100%);
  padding: 34px 0;
  margin: 40px 0;
  border-top: 1px solid #eee7e0;
  border-bottom: 1px solid #eee7e0;
  border-radius: 18px;
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: center;
  align-items: center;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  transition: transform 0.28s ease, opacity 0.28s ease;
  opacity: 0.96;
}

.brand-logo-img:hover {
  transform: scale(1.08);
  opacity: 1;
}

.shop-section {
  margin: 46px 0;
}

.shop-section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.shop-section-kicker {
  margin: 0 0 8px;
  color: #6c5f55;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-section-heading h2 {
  margin-bottom: 12px;
}

.shop-section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 20px 0 0;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.10);
}

.card-visual {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 20px;
}

.card-visual img {
  max-height: 180px;
  width: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.10));
}

.card-visual-yellow {
  background: linear-gradient(180deg, #fff6b8 0%, #fff9d8 100%);
}

.card-visual-red {
  background: linear-gradient(180deg, #ffe0de 0%, #fff1f0 100%);
}

.card-visual-gray {
  background: linear-gradient(180deg, #d9e1e5 0%, #edf2f4 100%);
}

.product-card-body {
  padding: 22px;
}

.product-card-body h3 {
  margin-bottom: 10px;
}

.product-card-body p {
  margin: 0;
  color: #555;
  line-height: 1.68;
}

.shop-mini-copy {
  margin: 42px 0;
}

.shop-mini-copy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.shop-mini-copy-card {
  background: linear-gradient(180deg, #fff 0%, #fffaf7 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #eee7e0;
}

.shop-mini-copy-card h3 {
  margin-bottom: 10px;
}

.shop-mini-copy-card p {
  margin: 0;
  color: #666;
  line-height: 1.68;
}

.shop-bottom-cta {
  text-align: center;
  background: linear-gradient(135deg, #d32f2f 0%, #ef5350 100%);
  border-radius: 20px;
  padding: 64px 20px;
  color: #fff;
  margin: 60px 0 20px;
  box-shadow: 0 18px 34px rgba(211, 47, 47, 0.20);
}

.shop-bottom-cta h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.shop-bottom-cta p {
  font-size: 1.15rem;
  margin: 0 0 35px;
  opacity: 0.95;
}

.btn-shop-primary {
  background-color: var(--pinoy-red);
  color: #fff !important;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  border: none;
  font-size: 1.05rem;
  transition: transform 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
}

.btn-shop-primary:hover {
  transform: translateY(-2px);
  opacity: 0.96;
  box-shadow: 0 10px 24px rgba(211, 47, 47, 0.22);
}

.btn-shop-primary-light {
  background: #fff;
  color: var(--pinoy-red) !important;
}

.btn-shop-secondary {
  color: var(--pinoy-dark);
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .shop-hero-card {
    padding: 28px 20px;
  }

  .shop-title {
    font-size: 2rem;
  }

  .shop-mini-copy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .shop-hero-side {
    display: none;
  }

  .brand-grid {
    gap: 24px;
  }

  .brand-logo-img {
    height: 38px;
  }

  .shop-bottom-cta {
    padding: 42px 18px;
  }

  .shop-bottom-cta h2 {
    font-size: 1.8rem;
  }
}