*,
::after,
::before {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

blockquote,
body,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
p {
  margin-block-end: 0;
}

ol[role=list],
ul[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

button,
h1,
h2,
h3,
h4,
input,
label {
  line-height: 1.1;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/* CUSTOM */
:root {
  --gutter-xs: 0.25rem;
  --gutter-s: 0.5rem;
  --gutter-m: 0.75rem;
  --gutter: 1rem;
  --gutter-lg: 1.5rem;
  --gutter-xl: 2rem;
  --gutter-2xl: 3rem;
  --radius-full: 999px;
  --text-xs: 0.625rem;
  --text-s: 0.75rem;
  --text-m: 0.875rem;
  --text: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.75rem;
  --text-2xl: 2rem;
  --font-weight-100: 100;
  --font-weight-200: 200;
  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --font-weight-800: 800;
  --color-primary: #fd5107;
  --color-bg: #f2f2f2;
  --color-bg-gradient: linear-gradient(
    to bottom right in oklab,
    oklch(100% 0 15),
    oklch(97% 0 221)
  );
  --gray-1: #fcfcfd;
  --gray-2: #f9f9fb;
  --gray-3: #f0f0f3;
  --gray-4: #e8e8ec;
  --gray-5: #e0e1e6;
  --gray-6: #d9d9e0;
  --gray-7: #cdced6;
  --gray-8: #b9bbc6;
  --gray-9: #8b8d98;
  --gray-10: #80838d;
  --gray-11: #60646c;
  --gray-12: #1c2024;
  --color-card-bg: #fff;
  --color-text: var(--gray-12);
  --color-text-light: var(--gray-11);
  --color-text-lighter: var(--gray-7);
  --color-text-oposite: #f2f2f2;
  --color-border: #dadddc;
  --layout-column-min: 320px;
  --border: 1px solid var(--color-border);
  --shadow-100:
    rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  --transition-base: all 0.25s ease-in;
}

body {
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: var(--text-m);
  font-style: normal;
  margin: 0;
  color: var(--color-text);
  accent-color: var(--color-primary);
  --hdr-gradient: radial-gradient(
    farthest-corner ellipse at -67% 4% in oklch,
    oklch(100% 0 352),
    oklch(94% 0 338)
  );
  --sdr-gradient: radial-gradient(
    farthest-corner ellipse at -67% 4%,
    #fff,
    #ebebeb
  );
  background: var(--hdr-gradient);
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
li {
  margin: 0;
  font-weight: 500;
}

a {
  color: var(--color-text);
}

strong {
  font-weight: 700;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gutter-m);
  border-bottom: var(--border);
  padding: var(--gutter);
  gap: var(--gutter-s);
}
@media screen and (max-width: 768px) {
  .site-header {
    padding-block: var(--gutter-m);
  }
}
@media screen and (max-width: 768px) {
  .site-header {
    padding-block: var(--gutter-s);
  }
}

.site-footer {
  display: flex;
  align-items: center;
  padding-block: var(--gutter);
  border-top: var(--border);
}

.site-branding {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .site-branding {
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: var(--border);
    padding-bottom: var(--gutter-s);
  }
}

.custom-logo {
  height: 36px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .custom-logo {
    height: 24px;
  }
}

.nav-primary {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.nav-secondary {
  flex-shrink: 0;
}

.menu-main-menu-container {
  width: 100%;
}

.menu {
  display: flex;
  gap: var(--gutter);
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .menu {
    gap: var(--gutter-xs);
    justify-content: flex-start;
  }
}
.menu li {
  list-style: none;
}
.menu a {
  text-decoration: none;
  border-radius: var(--radius-full);
  padding: var(--gutter-s) var(--gutter);
  font-size: var(--text);
  font-weight: 500;
}
.menu a[aria-current=page] {
  background: var(--color-primary);
  color: var(--color-text-oposite);
}
@media screen and (max-width: 768px) {
  .menu a {
    padding: var(--gutter-xs) var(--gutter-s);
    font-size: var(--text-m);
  }
}

.nav-secondary a {
  color: var(--color-primary);
}

main,
.main,
.site-main {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  main,
  .main,
  .site-main {
    padding-top: var(--gutter-s);
  }
}

.site-main {
  padding-top: var(--gutter-xl);
}

.layout-grid {
  --layout-grid-min: var(--layout-column-min);
  --layout-grid-gap: var(--gutter-lg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--layout-grid-min), 1fr));
  gap: 1px;
  background: var(--color-border);
}

.simplefavorite-button.simplefavorite-button {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 18px;
  color: var(--color-text-lighter);
  opacity: 1;
  transition: var(--transition-base);
}
.simplefavorite-button.simplefavorite-button:hover {
  color: var(--color-primary);
  cursor: pointer;
  transform: scale(1.1);
}
.simplefavorite-button.simplefavorite-button.active {
  opacity: 1;
}
.simplefavorite-button.simplefavorite-button.active .sf-icon-love {
  color: var(--color-primary);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-bg);
  text-decoration: none;
  padding: var(--gutter-lg) var(--gutter-lg) var(--gutter) var(--gutter-lg);
  transition: all 0.5s;
}
.card:hover {
  background-color: white;
}
.card .simplefavorite-button {
  z-index: 2;
}
.card .card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
}
.card h2 {
  display: flex;
  gap: var(--gutter);
  justify-content: space-between;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}
.card .title-sub {
  font-size: var(--text-s);
  font-weight: 200;
  color: var(--color-text-light);
  margin-bottom: var(--gutter-xs);
  margin-top: var(--gutter-xs);
}
.card .title-sub:empty {
  display: none;
}
.card h3 {
  display: flex;
  gap: var(--gutter-s);
  align-items: center;
  font-size: var(--text-s);
  font-weight: 400;
  color: var(--color-text-light);
  margin-block: var(--gutter-s);
  line-height: 1;
}
.card .desc {
  color: var(--color-text-light);
  font-weight: 300;
  font-size: 13px;
  margin-bottom: var(--gutter-m);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card .data {
  display: flex;
  align-items: center;
  gap: var(--gutter-m);
  color: var(--color-text-light);
  font-size: var(--text-xs);
  padding-top: var(--gutter-m);
  margin-top: auto;
}
.card .data span {
  display: inline-flex;
  align-items: baseline;
  line-height: 16px;
  gap: var(--gutter-xs);
}
.card .data span.rating {
  margin-left: auto;
}
.card .data .value {
  color: var(--color-text-light);
  font-weight: 800;
  font-size: 10px;
  line-height: 11px;
}
.card .data .icon {
  width: 14px;
  height: 14px;
  color: var(--gray-8);
  cursor: pointer;
  transition: fill 0.2s;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-text-light);
  color: var(--color-text-lighter);
  font-size: var(--text-s);
  border-radius: var(--radius-full);
  padding: var(--gutter-xs) var(--gutter-s);
  line-height: 1;
}

.wpc-filters {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-bottom: var(--gutter-xl);
  background: rgba(242, 242, 242, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: var(--border);
  padding: var(--gutter);
}
@media screen and (max-width: 768px) {
  .wpc-filters {
    padding-block: var(--gutter-m);
  }
}
.wpc-filters .wpc-filters-section {
  display: flex;
  gap: var(--gutter-m);
  align-items: flex-start;
  margin-bottom: var(--gutter-m);
}
.wpc-filters .wpc-filter-title {
  flex-shrink: 0;
  margin: 0;
  font-weight: 600;
}
.wpc-filters .wpc-filters-main-wrap ul.wpc-filters-ul-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.wpc-filters .wpc-filters-main-wrap ul.wpc-filters-ul-list li.wpc-term-item {
  margin-bottom: 0;
}
.wpc-filters .wpc-filters-main-wrap ul.wpc-filters-ul-list li.wpc-term-item a {
  font-weight: 300;
}
.wpc-filters .wpc-filter-chip-name {
  line-height: 1;
}
.wpc-filters .wpc-filter-chips-list a,
.wpc-filters .wpc-filter-chips-list li.wpc-filter-chip a {
  padding: 7px 12px 6px 12px;
}
@media screen and (max-width: 768px) {
  .wpc-filters {
    padding-bottom: var(--gutter-s);
  }
  .wpc-filters .wpc-filters-open-button-container .wpc-open-close-filters-button {
    margin-bottom: 0px;
    border: 0;
    padding: 0;
  }
}

.favorites-list {
  padding: 0;
  margin-top: var(--gutter);
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.entry-content p {
  margin-bottom: var(--gutter);
  max-width: 60ch;
}

.wp-block-columns {
  display: flex;
}

.rating-box {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.rating-box .star {
  font-size: 24px;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.2s;
}

.rating-box .star.filled {
  opacity: 1;
  color: gold;
}

.rating-single .star {
  font-size: 24px;
  color: gray;
  transition: 0.2s;
}

.rating-single .star[data-value] {
  cursor: pointer;
  opacity: 0.7;
}

.rating-single .star[data-value]:hover {
  transform: scale(1.6);
  opacity: 1;
  color: #ff8300;
}

.rating-single .star[data-value].filled {
  color: #ff8300;
}

.rating-single .star:not([data-value]) {
  cursor: default;
  opacity: 1;
}

.rating-single .star:not([data-value]).filled {
  opacity: 1;
  color: #ff8300;
}

/* Rating Display (read-only in card view) */
.rating-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
.rating-display .star {
  font-size: 1.2rem;
  color: gold;
  cursor: default;
}
.rating-display .rating-value {
  color: #666;
}

/* Side Panel Styles */
.detail-sidepanel {
  position: fixed;
  top: 0;
  right: -700px;
  width: 700px;
  max-width: 90vw;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease-in-out;
  z-index: 9999;
  overflow-y: auto;
}

.detail-sidepanel.active {
  right: 0;
}

.sidepanel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 9998;
}

.sidepanel-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.sidepanel-open {
  overflow: hidden;
}

.sidepanel-header {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidepanel-nav {
  display: flex;
  gap: 0.5rem;
}

.nav-sidepanel {
  background: #f0f0f0;
  border: 1px solid #ddd;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: 4px;
}
.nav-sidepanel span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-sidepanel:hover:not(:disabled) {
  background: #e0e0e0;
  border-color: #999;
  color: #000;
}

.nav-sidepanel:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.close-sidepanel {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.close-sidepanel:hover {
  color: #000;
}

.sidepanel-content {
  padding: 2rem;
}

.sidepanel-loader {
  text-align: center;
  padding: 2rem;
  font-size: 1.1rem;
  color: #666;
}

.sidepanel-error {
  text-align: center;
  padding: 2rem;
  color: #c00;
  font-size: 1.1rem;
}

.sidepanel-article .entry-header {
  margin-bottom: 1.5rem;
}
.sidepanel-article .entry-header .entry-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.sidepanel-article .entry-header .title-sub {
  font-size: 1.1rem;
  color: #666;
  margin-top: 0.5rem;
}
.sidepanel-article .entry-meta {
  margin-bottom: 1.5rem;
}
.sidepanel-article .entry-meta .badge,
.sidepanel-article .entry-meta .genre {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin-right: 0.5rem;
  background: #f0f0f0;
  border-radius: 4px;
  font-size: 0.9rem;
}
.sidepanel-article .entry-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.sidepanel-article .entry-content .film-description,
.sidepanel-article .entry-content .book-description {
  margin-bottom: 1.5rem;
}
.sidepanel-article .entry-content .film-info,
.sidepanel-article .entry-content .book-info {
  margin-bottom: 1.5rem;
}
.sidepanel-article .entry-content .film-info p,
.sidepanel-article .entry-content .book-info p {
  margin-bottom: 0.5rem;
}
.sidepanel-article .entry-content .rating-section {
  border-top: 1px solid #ddd;
}

/* Responsive styles for side panel */
@media (max-width: 768px) {
  .detail-sidepanel {
    width: 100vw;
    right: -100vw;
  }
  .sidepanel-content {
    padding: 1rem;
  }
  .sidepanel-article .entry-header .entry-title {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=style.css.map */
