:root {
    --primary-background: #FCFBF7;
    --secondary-background: #FEF9F0;
    --card-background: #FFFFFF;
    --text-primary-light: #1A1A1A;
    --text-secondary-light: #525252;
    --text-muted-light: #8E8E8E;
    --accent-pastel-blue: #A5D8FF;
    --accent-light-turquoise: #96E9D5;
    --accent-gentle-yellow: #FFF3BF;
    --accent-muted-orange: #FFD8A8;
    --border-color: #E5E7EB;
    --shadow-color: rgba(0, 0, 0, 0.04);
}

body.site-body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-background);
    color: var(--text-primary-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.text-muted {
    color: #8E8E8E !important;
}

.editorial-heading {
    font-family: 'Lora', serif;
    font-weight: 600;
}

.ui-element {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

* {
    box-sizing: border-box;
}

.site-section-spacing {
    padding: 80px 0;
}

@media (min-width: 992px) {
    .site-section-spacing {
        padding: 120px 0;
    }
}

.card-tactile {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-tactile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-color);
    border-color: var(--accent-pastel-blue);
}

/* ===== header ===== */
.header-block {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
}

.header-block .navbar-brand {
    text-decoration: none;
}

.header-block .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.header-block .brand-text {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #1A1A1A;
    letter-spacing: -0.01em;
}

.header-block .nav-link {
    color: #525252;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.header-block .nav-link:hover,
.header-block .nav-link:focus {
    color: #1A1A1A;
}

.header-block .dropdown-menu {
    border-radius: 12px;
    padding: 0.75rem;
    background-color: #FFFFFF;
}

.header-block .dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: #525252;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.header-block .dropdown-item:hover {
    background-color: #FEF9F0;
    color: #1A1A1A;
    transform: translateX(4px);
}

.header-block .nav-cta-btn {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.header-block .nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .header-block .navbar-collapse {
        background-color: #FFFFFF;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 12px;
        border: 1px solid #E5E7EB;
    }

    .header-block .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid #F3F4F6;
    }

    .header-block .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .header-block .nav-cta-btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .header-block .dropdown-menu {
        border: none;
        shadow: none;
        padding-left: 1rem;
    }
}

/* ===== hero ===== */
.hero-section {
    min-height: 80vh;
    background-color: #1A1A1A;
}

.hero-section__overlay {
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-section__title {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #F8FAFC;
}

.hero-section__description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #E2E8F0;
    max-width: 600px;
}

.hero-section__btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-section__btn--primary {
    background-color: #A5D8FF;
    color: #1A1A1A;
    border: 1px solid #A5D8FF;
}

.hero-section__btn--primary:hover {
    background-color: #96E9D5;
    border-color: #96E9D5;
    transform: translateY(-2px);
}

.hero-section__btn--secondary {
    background-color: transparent;
    color: #F8FAFC;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-section__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #F8FAFC;
    transform: translateY(-2px);
}

.hero-section__card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-section__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-section__card-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.hero-section__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section__card-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FFD8A8;
    color: #1A1A1A;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-section__card-body {
    padding: 1.5rem;
}

.hero-section__card-title {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.hero-section__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #525252;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero-section__title {
        font-size: 1.5rem;
    }

    .hero-section__description {
        font-size: 1rem;
    }

    .hero-section__card-image-container {
        height: 180px;
    }
}

/* ===== featured-cartridges ===== */
.retro-archive-block {
    background-color: #FEF9F0;
    overflow: hidden;
}

.retro-archive-block .archive-heading {
    font-family: 'Lora', serif;
    font-weight: 600;
    color: #1A1A1A;
    font-size: 2.5rem;
}

.retro-archive-block .archive-subtext {
    font-family: 'Inter', sans-serif;
    color: #525252;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.retro-archive-block .cartridge-container {
    perspective: 1000px;
}

.retro-archive-block .cartridge-link {
    text-decoration: none;
    display: block;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.retro-archive-block .cartridge-shell {
    background: #D1D5DB;
    border-radius: 8px 8px 4px 4px;
    padding: 12px;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5), 0 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    border: 1px solid #9CA3AF;
}

.retro-archive-block .cartridge-label {
    background: #FFFFFF;
    border: 2px solid #4B5563;
    padding: 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.retro-archive-block .cartridge-art {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid #E5E7EB;
}

.retro-archive-block .cartridge-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.retro-archive-block .cartridge-grip {
    height: 40px;
    margin-top: 12px;
    background: repeating-linear-gradient(90deg, #9CA3AF, #9CA3AF 4px, #D1D5DB 4px, #D1D5DB 8px);
    border-radius: 2px;
}

.retro-archive-block .achievement-sticker {
    position: absolute;
    top: 15px;
    right: -5px;
    padding: 4px 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    transform: rotate(15deg);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    z-index: 10;
    pointer-events: none;
}

.retro-archive-block .sticker-legend {
    background: #A5D8FF;
    color: #1A1A1A;
}

.retro-archive-block .sticker-top {
    background: #FFD8A8;
    color: #1A1A1A;
}

.retro-archive-block .cartridge-link:hover {
    transform: translateY(-12px) rotate(1deg);
}

.retro-archive-block .cartridge-link:hover .cartridge-shell {
    box-shadow: 0 0 20px rgba(165, 216, 255, 0.6), 0 15px 25px rgba(0, 0, 0, 0.1);
    border-color: #A5D8FF;
}

.retro-archive-block .cartridge-link:active {
    transform: translateY(-4px) scale(0.98);
}

.retro-archive-block .btn-archive-more {
    background: #FFFFFF;
    color: #1A1A1A;
    padding: 12px 32px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 0 #E5E7EB;
    transition: all 0.1s ease;
}

.retro-archive-block .btn-archive-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #E5E7EB;
    border-color: #A5D8FF;
}

.retro-archive-block .btn-archive-more:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #E5E7EB;
}

@media (max-width: 768px) {
    .retro-archive-block .archive-heading {
        font-size: 1.75rem;
    }

    .retro-archive-block .cartridge-shell {
        min-height: auto;
    }
}

/* ===== retro-experience ===== */
.retro-experience-block {
    background-color: #FEF9F0;
    overflow: hidden;
}

.retro-experience-block .bg-accent-blue {
    background-color: #A5D8FF;
    color: #1A1A1A;
}

.retro-experience-block .retro-experience-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1A1A1A;
}

.retro-experience-block .retro-experience-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #525252;
}

.retro-experience-block .btn-retro-action {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.retro-experience-block .btn-retro-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
}

.retro-experience-block .retro-image-wrapper {
    background-color: #FFFFFF;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #E5E7EB;
    aspect-ratio: 4 / 5;
}

.retro-experience-block .retro-image-inner {
    height: 100%;
    width: 100%;
}

.retro-experience-block .tracking-wider {
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .retro-experience-block .retro-experience-title {
        font-size: 1.125rem;
    }

    .retro-experience-block .retro-experience-text {
        font-size: 0.875rem;
    }

    .retro-experience-block .retro-image-wrapper {
        aspect-ratio: 1 / 1;
        margin-top: 1rem;
    }
}

/* ===== newsletter ===== */
.newsletter-block {
    background-color: #FEF9F0;
    position: relative;
    overflow: hidden;
}

.newsletter-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.newsletter-icon-circle {
    width: 64px;
    height: 64px;
    background-color: #FFF3BF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
}

.newsletter-svg {
    width: 32px;
    height: 32px;
}

.newsletter-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.2;
}

.newsletter-description {
    font-family: 'Inter', sans-serif;
    color: #525252;
    font-size: 1rem;
    line-height: 1.6;
}

.newsletter-input {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    padding-left: 1.25rem;
    font-family: 'Inter', sans-serif;
    background-color: #FCFBF7;
    color: #1A1A1A;
}

.newsletter-input:focus {
    border-color: #A5D8FF;
    box-shadow: none;
    outline: 0;
}

.newsletter-input::placeholder {
    color: #8E8E8E;
    opacity: 1;
}

.newsletter-btn {
    height: 48px;
    background-color: #A5D8FF;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1A1A1A;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-btn:hover {
    background-color: #96E9D5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-footer {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #8E8E8E;
}

@media (max-width: 767.98px) {
    .newsletter-title {
        font-size: 1.25rem;
    }

    .newsletter-description {
        font-size: 0.9rem;
    }
}

/* ===== footer ===== */
.footer-block {
    background-color: #FEF9F0;
    padding: 80px 0 40px 0;
    border-top: 1px solid #E5E7EB;
    color: #1A1A1A;
}

.footer-block .footer-logo-img {
    max-width: 50px;
    height: auto;
}

.footer-block .footer-brand-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #525252;
    max-width: 320px;
}

.footer-block .footer-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #1A1A1A;
}

.footer-block .footer-nav-list li {
    margin-bottom: 0.75rem;
}

.footer-block .footer-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #525252;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-block .footer-nav-link:hover {
    color: #A5D8FF;
}

.footer-block .footer-contact-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #525252;
}

.footer-block .footer-contact-btn {
    display: inline-block;
    background-color: #FFFFFF;
    color: #1A1A1A;
    padding: 10px 20px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-block .footer-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
    color: #1A1A1A;
}

.footer-block .footer-bottom-bar {
    border-top: 1px solid #E5E7EB;
}

.footer-block .footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #8E8E8E;
}

@media (max-width: 991px) {
    .footer-block {
        padding: 60px 0 30px 0;
    }

    .footer-block .footer-title {
        margin-top: 1rem;
        font-size: 1.15rem;
    }
}

@media (max-width: 767px) {
    .footer-block .footer-brand-description {
        max-width: 100%;
    }

    .footer-block .footer-copyright {
        font-size: 0.75rem;
    }
}

/* ===== PAGE: privacy ===== */
.policy-document-wrapper { background-color: #FCFBF7; min-height: 100vh; padding: 60px 0; } .policy-container-inner { max-width: 850px; margin: 0 auto; background: #FFFFFF; padding: 40px; border-radius: 12px; border: 1px solid #E5E7EB; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); } .policy-content-body { color: #1A1A1A; font-family: 'Inter', sans-serif; line-height: 1.8; } .policy-content-body h2 { font-family: 'Lora', serif; color: #1A1A1A; font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; border-left: 4px solid #A5D8FF; padding-left: 15px; } .policy-content-body p { margin-bottom: 1.2rem; color: #525252; } .policy-content-body ul { margin-bottom: 1.5rem; padding-left: 1.2rem; } .policy-content-body li { margin-bottom: 0.6rem; color: #525252; position: relative; list-style-type: none; padding-left: 20px; } .policy-content-body li::before { content: '•'; color: #A5D8FF; font-weight: bold; position: absolute; left: 0; } .policy-date { font-weight: 600; color: #8E8E8E; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2rem; border-bottom: 1px solid #E5E7EB; padding-bottom: 10px; } .policy-link { color: #1A1A1A; text-decoration: none; border-bottom: 2px solid #FFF3BF; transition: background-color 0.2s ease; } .policy-link:hover { background-color: #FFF3BF; } @media (max-width: 768px) { .policy-container-inner { margin: 0 15px; padding: 25px; } .policy-content-body h2 { font-size: 1.25rem; } .policy-content-body p, .policy-content-body li { font-size: 0.95rem; } }

/* ===== PAGE: terms ===== */
.policy-container-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FCFBF7;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
}

.terms-content-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.terms-header-block {
  text-align: left;
  border-bottom: 2px solid #E5E7EB;
  padding-bottom: 2rem;
  position: relative;
}

.terms-main-title {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}

.terms-last-updated {
  font-size: 0.9rem;
  color: #8E8E8E;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.terms-hero-accent {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #A5D8FF;
}

.terms-section {
  margin-bottom: 2.5rem;
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.terms-heading {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #1A1A1A;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}

.terms-heading::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1.5rem;
  background-color: #FFD8A8;
  margin-right: 12px;
  border-radius: 2px;
}

.terms-paragraph {
  line-height: 1.8;
  color: #525252;
  margin-bottom: 1rem;
}

.terms-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.terms-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #525252;
  line-height: 1.6;
}

.terms-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #A5D8FF;
  font-weight: bold;
}

.terms-contact-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.terms-contact-list li {
  margin-bottom: 0.5rem;
  color: #525252;
}

.terms-link {
  color: #1A1A1A;
  text-decoration: none;
  border-bottom: 1px solid #A5D8FF;
  transition: border-color 0.2s ease;
}

.terms-link:hover {
  border-color: #FFD8A8;
}

.contact-section-box {
  background-color: #FEF9F0;
  border-color: #FFD8A8;
}

@media (max-width: 768px) {
  .policy-container-inner {
    padding: 40px 15px;
  }
  .terms-main-title {
    font-size: 1.75rem;
  }
  .terms-heading {
    font-size: 1.25rem;
  }
  .terms-section {
    padding: 1.5rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.policy-container-inner { padding: 40px 20px; max-width: 800px; margin: 0 auto; background-color: #FFFFFF; border-radius: 12px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); border: 1px solid #E5E7EB; } .disclaimer-body-content h2 { font-family: 'Lora', serif; color: #1A1A1A; font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; border-bottom: 1px solid #FFF3BF; display: inline-block; } .disclaimer-body-content p { font-family: 'Inter', sans-serif; color: #525252; line-height: 1.8; margin-bottom: 1.25rem; } .disclaimer-body-content ul { list-style: none; padding-left: 0; margin-bottom: 1.5rem; } .disclaimer-body-content li { position: relative; padding-left: 1.75rem; color: #525252; margin-bottom: 0.75rem; line-height: 1.6; } .disclaimer-body-content li::before { content: '→'; position: absolute; left: 0; color: #A5D8FF; font-weight: bold; } .disclaimer-body-content a { color: #8E8E8E; text-decoration: none; border-bottom: 1px dashed #A5D8FF; transition: color 0.2s ease; } .disclaimer-body-content a:hover { color: #1A1A1A; border-bottom-style: solid; } @media (max-width: 767px) { .policy-container-inner { padding: 25px 15px; margin: 10px; } .disclaimer-body-content h2 { font-size: 1.25rem; } .disclaimer-body-content p, .disclaimer-body-content li { font-size: 0.95rem; } }

/* ===== PAGE: cookies ===== */
.policy-container-inner { padding: 40px 20px; max-width: 900px; margin: 0 auto; background-color: #FCFBF7; color: #1A1A1A; font-family: 'Inter', sans-serif; line-height: 1.6; } .cookies-policy-section { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 12px; padding: 48px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); } .cookies-policy-section .editorial-heading { font-family: 'Lora', serif; font-size: 32px; font-weight: 600; color: #1A1A1A; margin-bottom: 24px; line-height: 1.2; } .cookies-policy-section .editorial-intro { font-size: 18px; color: #525252; margin-bottom: 40px; border-left: 4px solid #A5D8FF; padding-left: 20px; } .cookies-policy-section .policy-content-block { margin-bottom: 32px; } .policy-content-block h2 { font-family: 'Lora', serif; font-size: 24px; font-weight: 600; color: #1A1A1A; margin-bottom: 16px; border-bottom: 1px solid #E5E7EB; padding-bottom: 8px; } .policy-content-block p { font-size: 16px; color: #525252; margin-bottom: 16px; } .policy-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; } .policy-mini-card { background: #FEF9F0; border-radius: 12px; padding: 24px; border: 1px solid #FFD8A8; } .policy-mini-card h3 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 600; color: #1A1A1A; margin-bottom: 12px; } .policy-mini-card p { font-size: 14px; color: #525252; margin: 0; } .policy-link { color: #1A1A1A; text-decoration: underline; font-weight: 500; } .contact-footer-info { margin-top: 48px; padding-top: 24px; border-top: 1px solid #E5E7EB; font-size: 14px; color: #8E8E8E; } @media (max-width: 768px) { .cookies-policy-section { padding: 24px; } .cookies-policy-section .editorial-heading { font-size: 24px; } .policy-card-grid { grid-template-columns: 1fr; } .policy-content-block h2 { font-size: 20px; } }

/* ===== PAGE: history ===== */
.dendy-history-section {
  background-color: #FCFBF7;
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
}

.dendy-history-section .editorial-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.dendy-history-section .editorial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.dendy-history-section .editorial-title {
  font-family: 'Lora', serif;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.2;
}

.dendy-history-section .bg-accent-orange {
  background-color: #FFD8A8 !important;
}

.dendy-history-section .quote-box {
  background-color: #FEF9F0;
  border-left: 4px solid #FFF3BF;
  font-family: 'Lora', serif;
  font-style: italic;
  color: #525252;
}

.dendy-history-section .content-body h2 {
  font-family: 'Lora', serif;
  color: #1A1A1A;
  border-bottom: 2px solid #A5D8FF;
  display: inline-block;
  padding-bottom: 4px;
}

.dendy-history-section .image-frame {
  position: relative;
  padding: 10px;
  background: #FFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.dendy-history-section .btn-timeline {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #525252;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.dendy-history-section .btn-timeline.active {
  background: #A5D8FF;
  border-color: #A5D8FF;
  color: #1A1A1A;
  box-shadow: 0 2px 8px rgba(165, 216, 255, 0.4);
}

.dendy-history-section .js-tab-content h4 {
  font-family: 'Lora', serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .dendy-history-section .editorial-title {
    font-size: 1.75rem;
  }
  .dendy-history-section .editorial-card {
    padding: 1.5rem !important;
  }
}

/* ===== PAGE: golden-collection ===== */
.catalog-section {
  background-color: #FCFBF7;
  overflow: hidden;
}
.catalog-section__title {
  font-family: 'Lora', serif;
  font-weight: 600;
  color: #1A1A1A;
  font-size: 2.5rem;
}
.catalog-section__subtitle {
  font-family: 'Inter', sans-serif;
  color: #525252;
  font-size: 1.1rem;
}
.catalog-section__search-wrapper {
  max-width: 500px;
}
.catalog-section__search-icon {
  width: 20px;
  height: 20px;
  color: #8E8E8E;
}
.catalog-section .form-control:focus {
  box-shadow: none;
  border-color: #E5E7EB;
}
.catalog-section__intro-text p {
  font-family: 'Inter', sans-serif;
  color: #525252;
  line-height: 1.8;
}
.catalog-section__card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.catalog-section__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08), 0 0 15px rgba(165, 216, 255, 0.3);
  border-color: #A5D8FF;
}
.catalog-section__cartridge-wrapper {
  position: relative;
  background: #f0f0f0;
  padding: 10px;
  border-radius: 8px 8px 0 0;
  margin-bottom: 20px;
}
.catalog-section__cartridge-label {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  border: 4px solid #333;
  background: #000;
}
.catalog-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-section__card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.catalog-section__card-title {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #1A1A1A;
}
.catalog-section__card-author {
  font-size: 0.9rem;
  color: #8E8E8E;
  margin-bottom: 1.5rem;
}
.catalog-section__badge {
  background: #FFF3BF;
  color: #1A1A1A;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.catalog-section__date {
  font-size: 0.8rem;
  color: #8E8E8E;
}
.catalog-section__button {
  margin-top: auto;
  background: #1A1A1A;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease;
}
.catalog-section__button:hover {
  background: #333333;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .catalog-section__title {
    font-size: 1.8rem;
  }
}

/* ===== PAGE: secrets-and-codes ===== */
.secrets-catalog { background-color: #FCFBF7; }
.secrets-catalog__title { font-family: 'Lora', serif; font-size: 2.5rem; color: #1A1A1A; font-weight: 600; }
.secrets-catalog__desc { font-family: 'Inter', sans-serif; color: #525252; max-width: 700px; font-size: 1.1rem; }
.secrets-catalog__card { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); display: flex; flex-direction: column; width: 100%; transition: box-shadow 0.3s ease, border-color 0.3s ease; }
.secrets-catalog__card:hover { border-color: #A5D8FF; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); transform: translateY(-2px); }
.secrets-catalog__img-wrapper { position: relative; height: 220px; overflow: hidden; }
.secrets-catalog__img { width: 100%; height: 100%; object-fit: cover; }
.secrets-catalog__content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.secrets-catalog__meta { font-size: 0.85rem; font-family: 'Inter', sans-serif; color: #8E8E8E; font-weight: 500; }
.secrets-catalog__item-title { font-family: 'Lora', serif; font-size: 1.35rem; color: #1A1A1A; line-height: 1.3; margin-bottom: 0.75rem; }
.secrets-catalog__text { font-family: 'Inter', sans-serif; color: #525252; font-size: 0.95rem; line-height: 1.6; }
.secrets-catalog__link { background-color: #FFFFFF; border: 1px solid #E5E7EB; color: #1A1A1A; padding: 0.75rem 1.25rem; text-decoration: none; border-radius: 8px; font-family: 'Inter', sans-serif; font-weight: 500; text-align: center; transition: background-color 0.2s, color 0.2s; align-self: flex-start; }
.secrets-catalog__link:hover { background-color: #FFF3BF; color: #1A1A1A; border-color: #FFD8A8; }
@media (max-width: 767px) {
  .secrets-catalog__title { font-size: 1.5rem; }
  .secrets-catalog__item-title { font-size: 1.15rem; }
}

/* ===== PAGE: hardware-and-accessories ===== */
.hardware-catalog {
  background-color: #FCFBF7;
  color: #1A1A1A;
}
.hardware-catalog__main-title {
  font-family: 'Lora', serif;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
.hardware-catalog__main-subtitle {
  color: #525252;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-family: 'Inter', sans-serif;
}
.hardware-catalog__filter-btn {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.hardware-catalog__filter-btn:hover {
  border-color: #A5D8FF;
  box-shadow: 0 4px 8px rgba(0,0,0,0.04);
}
.hardware-catalog__filter-btn.active {
  background: #A5D8FF;
  border-color: #A5D8FF;
  color: #1A1A1A;
}
.hardware-catalog__card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hardware-catalog__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  border-color: #FFD8A8;
}
.hardware-catalog__image-wrapper {
  height: 200px;
  width: 100%;
  overflow: hidden;
}
.hardware-catalog__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hardware-catalog__content {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.hardware-catalog__meta {
  font-size: 0.75rem;
  color: #8E8E8E;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.hardware-catalog__card-title {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1A1A1A;
  line-height: 1.3;
}
.hardware-catalog__card-text {
  font-size: 0.9rem;
  color: #525252;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.hardware-catalog__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #1A1A1A;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  transition: color 0.2s ease;
}
.hardware-catalog__link:hover {
  color: #525252;
}
.hardware-catalog__icon {
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
}

/* ===== PAGE: contact ===== */
.contact-form-section {
  background-color: #FCFBF7;
  font-family: 'Inter', sans-serif;
}

.contact-form-section .contact-info-card,
.contact-form-section .contact-form-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.contact-form-section .contact-title,
.contact-form-section .form-title {
  font-family: 'Lora', serif;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.2;
}

.contact-form-section .contact-title {
  font-size: 2rem;
}

.contact-form-section .form-title {
  font-size: 2.25rem;
}

@media (max-width: 767px) {
  .contact-form-section .contact-title { font-size: 1.5rem; }
  .contact-form-section .form-title { font-size: 1.75rem; }
}

.contact-form-section .contact-lead,
.contact-form-section .form-desc {
  color: #525252;
  font-size: 1.1rem;
}

.contact-form-section .icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: #FEF9F0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD8A8;
}

.contact-form-section .icon-svg {
  width: 24px;
  height: 24px;
}

.contact-form-section .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8E8E8E;
  font-weight: 600;
}

.contact-form-section .value {
  font-size: 1.1rem;
  word-break: break-word;
}

.contact-form-section .whatsapp-btn {
  background-color: #A5D8FF;
  color: #1A1A1A;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.contact-form-section .whatsapp-btn:hover {
  background-color: #96E9D5;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-section .form-label {
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
  background-color: #FEF9F0;
  border: 1px solid #E5E7EB;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: #1A1A1A;
}

.contact-form-section .form-control::placeholder {
  color: #8E8E8E;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
  border-color: #A5D8FF;
  box-shadow: 0 0 0 3px rgba(165, 216, 255, 0.2);
  background-color: #FFFFFF;
}

.contact-form-section .submit-btn {
  background-color: #1A1A1A;
  color: #FFFFFF;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-form-section .submit-btn:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-form-section .form-error-msg {
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 500;
}

.comment-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.comment-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FEF9F0;
    flex-shrink: 0;
}

.comment-author {
    font-family: 'Lora', serif;
    font-weight: 600;
    color: #1A1A1A;
    font-size: 1.1rem;
}

.comment-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.comment-body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #525252 !important;
}

.btn-action {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 6px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #525252;
    transition: all 0.2s ease;
}

.btn-action svg {
    width: 16px;
    height: 16px;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    border-color: #A5D8FF;
    color: #1A1A1A;
}

.reply-thread {
    border-left-color: #FFF3BF !important;
    border-left-width: 3px !important;
}

.reply-comment-card {
    background-color: #FEF9F0;
    border-radius: 12px;
    border: 1px solid #E5E7EB !important;
}

.comment-avatar-sm {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #E5E7EB;
    flex-shrink: 0;
}

.mention {
    color: #525252;
    background: #FFF3BF;
    padding: 0 4px;
    border-radius: 4px;
    font-size: 0.95em;
}

.btn-action-sm {
    background: transparent;
    border: none;
    padding: 2px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #8E8E8E;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-action-sm:hover {
    color: #1A1A1A;
}

.btn-action-sm svg {
    width: 14px;
    height: 14px;
}


/* ===== PAGE TEMPLATE: golden-collection ===== */
.header-block {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
}

.header-block .navbar-brand {
    text-decoration: none;
}

.header-block .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.header-block .brand-text {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #1A1A1A;
    letter-spacing: -0.01em;
}

.header-block .nav-link {
    color: #525252;
    font-weight: 500;
    font-size: 0.95rem;
}

.header-block .nav-cta-btn {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.detail-hero {
    background-color: #FEF9F0;
    border-bottom: 1px solid #E5E7EB;
}

.detail-hero__title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: #1A1A1A;
}

.detail-hero__lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #525252;
}

.detail-hero__image-container {
    height: 350px;
    background-color: #1A1A1A;
}

.detail-page-wrapper {
    background-color: #FCFBF7;
}

.article-body h1,
.article-body h2,
.article-body h3 {
    font-family: 'Lora', serif;
    color: #1A1A1A;
    margin-top: 1.5rem;
}

.article-body p {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #525252;
    margin-bottom: 1.25rem;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.btn-action {
    border: none;
    background: none;
    color: #525252;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0;
    transition: color 0.2s;
}

.btn-action:hover {
    color: #A5D8FF;
}

.btn-action.active {
    color: #A5D8FF;
}

.comment-avatar-placeholder {
    color: #8E8E8E;
}

.footer-block {
    background-color: #FEF9F0;
    padding: 80px 0 40px 0;
    border-top: 1px solid #E5E7EB;
    color: #1A1A1A;
}

.footer-block .footer-logo-img {
    max-width: 50px;
    height: auto;
}

.footer-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.25rem;
}

.footer-nav-link {
    font-family: 'Inter', sans-serif;
    color: #525252;
    text-decoration: none;
}

@media (max-width: 768px) {
    .detail-hero__title {
        font-size: 1.8rem;
    }

    .detail-hero__image-container {
        height: 250px;
    }
}

.comment-card {
    border-radius: 12px;
    background: #fff;
    border: 1px solid #E5E7EB !important;
}

/* ===== PAGE TEMPLATE: secrets-and-codes ===== */
.detail-page-wrapper .hero-section {
    min-height: 400px;
    background-color: #1A1A1A;
}

.detail-page-wrapper .hero-section__overlay {
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.detail-page-wrapper .hero-section .container {
    z-index: 2;
}

.detail-page-wrapper .hero-section__title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.detail-page-wrapper .rich-text-content {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #1A1A1A;
}

.detail-page-wrapper .rich-text-content h2 {
    font-family: 'Lora', serif;
    font-weight: 600;
    color: #1A1A1A;
    font-size: 1.75rem;
}

.detail-page-wrapper .rich-text-content p {
    margin-bottom: 1.5rem;
}

.detail-page-wrapper .instruction-list {
    font-family: 'Inter', sans-serif;
}

.detail-page-wrapper .hover-accent:hover h6 {
    color: #A5D8FF;
    transition: color 0.2s ease;
}

.detail-page-wrapper .comment-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.detail-page-wrapper .btn-action {
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.detail-page-wrapper .btn-action:hover {
    color: #1A1A1A !important;
}

.detail-page-wrapper .js-heart.active {
    fill: #ff4d4d;
    stroke: #ff4d4d;
}

@media (max-width: 767.98px) {
    .detail-page-wrapper .hero-section__title {
        font-size: 1.75rem;
    }

    .detail-page-wrapper .content-card {
        padding: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: hardware-and-accessories ===== */
.hw-detail-wrapper {
    --primary-bg: #FCFBF7;
    --secondary-bg: #FEF9F0;
    --accent-blue: #A5D8FF;
    --accent-orange: #FFD8A8;
    --text-primary: #1A1A1A;
    --text-secondary: #525252;
    --border-color: #E5E7EB;
    background-color: var(--primary-bg);
    font-family: 'Inter', sans-serif;
}

.hw-detail-wrapper .font-lora {
    font-family: 'Lora', serif;
}

.hw-detail-wrapper .hero-section {
    min-height: 400px;
    background-position: center;
    background-size: cover;
}

.hw-detail-wrapper .hero-section__overlay {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 1;
}

.hw-detail-wrapper .hero-section .container {
    z-index: 2;
}

.hw-detail-wrapper .hero-section__title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 600;
}

.hw-detail-wrapper .hero-section__description {
    font-size: 1.1rem;
    max-width: 700px;
    color: #E2E8F0;
}

.hw-detail-wrapper .content-card,
.hw-detail-wrapper .sidebar-card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.hw-detail-wrapper .editorial-content h2,
.hw-detail-wrapper .editorial-content h3 {
    font-family: 'Lora', serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hw-detail-wrapper .editorial-content p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hw-detail-wrapper .slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.hw-detail-wrapper .slider-item {
    height: 400px;
}

.hw-detail-wrapper .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    cursor: pointer;
    transition: background 0.3s;
}

.hw-detail-wrapper .slider-btn:hover {
    background: var(--accent-blue);
}

.hw-detail-wrapper .slider-btn.prev {
    left: 10px;
}

.hw-detail-wrapper .slider-btn.next {
    right: 10px;
}

.hw-detail-wrapper .btn-share {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hw-detail-wrapper .btn-share:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--text-primary);
}

.hw-detail-wrapper .sidebar-title {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 600;
    border-left: 4px solid var(--accent-blue);
    padding-left: 1rem;
}

.hw-detail-wrapper .recent-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.hw-detail-wrapper .btn-action {
    border: none;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0;
    transition: color 0.2s ease;
}

.hw-detail-wrapper .btn-action:hover {
    color: var(--text-primary);
}

.hw-detail-wrapper .btn-action.active {
    color: #ef4444;
}

.hw-detail-wrapper .btn-submit-comment {
    background-color: var(--text-primary);
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s;
}

.hw-detail-wrapper .btn-submit-comment:hover {
    transform: translateY(-2px);
    background-color: #333333;
}

@media (max-width: 768px) {
    .hw-detail-wrapper .hero-section__title {
        font-size: 1.8rem;
    }

    .hw-detail-wrapper .slider-item {
        height: 250px;
    }

    .hw-detail-wrapper .content-card {
        padding: 1.5rem !important;
    }
}