/* ==========================================================================
   LIRA STYLESHEET
   Merged from styles.css and components.css
   Version: 1.0.0
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES & BASE LAYER
   ========================================================================== */

@layer base {
  :root {
    --brand-orange: #F37F1A;
    --brand-orange-dark: #e86b00;
    --brand-blue: #08395A;
    --brand-blue-light: #fbfcff;
    --text-base: #2f3640;
    --text-muted: #6c757d;
    --border-soft: #dce1eb;
    --shadow-sm: 0 6px 18px rgba(15, 35, 95, 0.08);
    --radius-md: 0rem;
    
    /* Layout dimensions - extracted from arbitrary values */
    --sidebar-width: 260px;
    --sidebar-list-width: 240px;
    --shopping-cart-width: 350px;
    --banner-width: 711px;
    --banner-height: 2850px;
    
    /* Product image dimensions */
    --product-image-width-small: 86px;
    --product-image-width-medium: 100px;
    --product-image-width-large: 120px;
    --product-image-height: 120px;
    --product-image-max-width: 140px;
    --product-image-max-width-large: 350px;
    
    /* Positioning offsets */
    --badge-top-offset: 10px;
    --badge-left-offset: -8px;
    --badge-bottom-offset: 2px;
    
    /* Spacing */
    --content-gap: 20px;
    --title-padding-left: 10px;
  }
}

/* ==========================================================================
   GLOBAL & BASE STYLES
   ========================================================================== */

/* Alpine.js and Global Utilities */
[x-cloak] { display: none !important; }

html {
    scroll-behavior: smooth;
}

blockquote, dd, dl, figure, p, pre {
  margin-bottom: 1rem !important;
}

a {
  text-decoration: none !important;
  color: var(--brand-blue);  
}
a:hover {
  color: var(--brand-orange) !important;
}

/* Button-like links with dark blue background should have white text */
a.bg-brand-blue {
  color: white !important;
}
a.bg-brand-blue:hover {
  color: white !important;
}

/* Allow Tailwind color classes to work in top navbar - more specific selector overrides global a rule */
#top-navbar-wrapper a.text-white {
  color: rgb(255, 255, 255) !important;
}
#top-navbar-wrapper a.text-white:hover {
  color: rgb(191, 219, 254) !important; /* blue-200 */
}

/* Override global a rule for top navbar links */
.lira-top-navbar__link {
  color: white !important;
}
.lira-top-navbar__link:hover {
  color: #bfdbfe !important; /* blue-200 */
}

/* Allow Tailwind color classes to work in main navbar right wrapper */
#main-navbar-right-wrapper a.text-white {
  color: rgb(255, 255, 255) !important;
}
#main-navbar-right-wrapper a.text-white:hover {
  color: rgb(191, 219, 254) !important; /* blue-200 */
}

/* ==========================================================================
   BRAND UTILITY CLASSES
   ========================================================================== */

.bg-brand-blue {
  background-color: var(--brand-blue);
}

.text-brand-blue {
  color: var(--brand-blue);
}

.border-brand-blue {
  border-color: var(--brand-blue);
}

.bg-brand-orange {
  background-color: var(--brand-orange);
}

.text-brand-orange {
  color: var(--brand-orange);
}

.border-brand-orange {
  border-color: var(--brand-orange);
}

.hover\:bg-brand-orange-dark:hover {
  background-color: var(--brand-orange-dark);
}

/* ==========================================================================
   NAVIGATION STYLES
   ========================================================================== */

.main-nav-categories {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.2rem;
  row-gap: 0.4rem;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0;
}

.main-nav-categories .nav-item {
  display: flex;
  align-items: center;
  position: relative;
}

.main-nav-categories .nav-item::after {
  content: "";
  display: inline-flex;
  width: 1px;
  height: 16px;
  background-color: var(--border-soft);
  margin-left: 1.2rem;
}

.main-nav-categories .nav-item:last-child::after {
  content: none;
}

.main-nav-categories .nav-link {
  padding: 0;
  color: var(--text-base);
  transition: color 0.2s ease;
}

.main-nav-categories .nav-link:hover,
.main-nav-categories .nav-link:focus {
  color: var(--brand-blue);
}

.breadcrumb-nav {
  gap: 0.25rem;
}

.breadcrumb-nav .nav-item {
  display: flex;
  align-items: center;
  position: relative;
}

.breadcrumb-nav .nav-item::after {
  content: "\e5cc";
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  font-size: 1rem;
  color: rgb(107, 114, 128);
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  display: inline-flex;
  align-items: center;
}

.breadcrumb-nav .nav-item:last-child::after {
  content: none;
}

.breadcrumb-nav .nav-link {
  padding: 0;
  color: rgb(55, 65, 81);
  transition: color 0.2s ease;
}

.breadcrumb-nav .nav-link:hover,
.breadcrumb-nav .nav-link:focus {
  color: rgb(37, 99, 235);
}

/* ==========================================================================
   CATEGORY NAVIGATION STYLES
   ========================================================================== */

#category-navigation {
  width: 100%;
  max-width: 260px;
  box-sizing: border-box;
}

.category-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item:last-child {
  border-bottom: none;
}

.category-header {
  display: flex;
  align-items: center;
  padding: 0;
  min-width: 0;
  width: 100%;
}

.category-toggle {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-base);
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.category-toggle:hover {
  color: var(--brand-blue);
}

.category-toggle .material-symbols-outlined {
  font-size: 0.8rem;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.category-link {
  display: block;
  padding: 10px 12px;
  font-size: 0.8rem;  
  color: var(--text-base);
  text-decoration: none;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.category-link:hover {
  color: var(--brand-blue);
  background-color: var(--brand-blue-light);
}

.category-link-highlight {
  color: var(--brand-orange);
  font-weight: 500;
}

.category-link-highlight:hover {
  color: var(--brand-orange-dark);
  background-color: rgba(243, 127, 26, 0.1);
}

.category-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: block;
}

/* Smooth sliding animation for submenu */
.submenu-slide-enter {
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.submenu-slide-enter-start {
  max-height: 0;
  opacity: 0;
}

.submenu-slide-enter-end {
  max-height: 2000px;
  opacity: 1;
}

.submenu-slide-leave {
  transition: max-height 0.3s ease-in, opacity 0.3s ease-in;
}

.submenu-slide-leave-start {
  max-height: 2000px;
  opacity: 1;
}

.submenu-slide-leave-end {
  max-height: 0;
  opacity: 0;
}

.category-submenu .category-item {
  padding-left: 0;
}

.category-submenu .category-item:last-child {
  border-bottom: none;
}

.category-submenu .category-header {
  padding-left: 20px;
}

.category-submenu .category-link {
  padding-left: 12px;
}

/* Align items without toggle buttons to match items with toggle buttons */
.category-submenu .category-item:not(.has-children) .category-header {
  padding-left: 20px;
}

.category-submenu .category-item:not(.has-children) .category-link {
  padding-left: 34px; /* Match space of toggle button (8px + 18px icon + 8px) */
}

/* ==========================================================================
   FORM COMPONENTS
   ========================================================================== */

/* Custom borderless select styling */
.custom-select-no-border {
  border: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 26px;
  cursor: pointer;
}

.custom-select-no-border:focus {
  outline: none;
}

.custom-select-no-border:hover {
  color: var(--brand-blue);
}

.icon-konyvespolc-add {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  color: var(--brand-orange);
}

/* Text Input - Standard form input */
.lira-input {
    padding: 0.375rem 0.75rem;
    height: 100%;
    border: 1px solid #d1d5db;
    font-size: 0.875rem;
}

.lira-input:focus {
    outline: none;
    border-color: #3b82f6;
}

/* Input - Small variant */
.lira-input--sm {
    padding: 0.375rem 0.75rem;
    border: 1px solid #d1d5db;
    font-size: 0.875rem;
}

.lira-input--sm:focus {
    outline: none;
    border-color: #3b82f6;
}

/* Input - Full width */
.lira-input--full {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px solid #d1d5db;
    font-size: 0.875rem;
}

.lira-input--full:focus {
    outline: none;
    border-color: #3b82f6;
}

/* Select Dropdown */
.lira-select {
    padding: 0.375rem 0.5rem;
    border: 1px solid #d1d5db;
    font-size: 0.875rem;
    background-color: white;
}

.lira-select:focus {
    outline: none;
    border-color: #3b82f6;
}

/* Select - No border variant (for inline use) */
.lira-select--borderless {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.lira-select--borderless:focus {
    outline: none;
}

/* Select - Full width */
.lira-select--full {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px solid #d1d5db;
    font-size: 0.875rem;
    background-color: white;
}

.lira-select--full:focus {
    outline: none;
    border-color: #3b82f6;
}

/* Checkbox */
.lira-checkbox {
    width: 1rem;
    height: 1rem;
    color: #4b5563;
    border-color: #d1d5db;
    border-radius: 0.25rem;
}

.lira-checkbox:focus {
    accent-color: var(--brand-blue);
}

.lira-checkbox:checked {
    background-color: #4b5563;
    border-color: #4b5563;
}

/* Form Label */
.lira-label {
    font-size: 0.875rem;
    color: #374151;
}

.lira-label--fixed {
    font-size: 0.875rem;
    color: #374151;
    width: 6rem;
    flex-shrink: 0;
}

/* Form Field Row - Horizontal label + input */
.lira-form-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lira-form-row--vertical {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* ==========================================================================
   LAYOUT COMPONENTS
   ========================================================================== */

/* Page Container - Centers content with max width */
.lira-page-container {
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.lira-page-content {
    width: 100%;
}

@media (min-width: 768px) {
    .lira-page-content {
        width: 1200px;
    }
}

/* Content Wrapper - Main content area with sidebar gap */
.lira-content-wrapper {
    display: flex;
    margin-top: 1rem;
    gap: var(--content-gap);
}

/* Sidebar - Left and Right */
.lira-sidebar {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: var(--sidebar-width);
    max-width: var(--sidebar-width);
}

/* Sidebar List - For top 10 lists */
.lira-sidebar-list {
    width: var(--sidebar-list-width);
}

/* Header Flex Container */
.lira-header {
    display: flex;
}

.lira-header-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lira-header-col--constrained {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 450px;
}

#right-sidebar-wrapper > div {
  background-color: var(--brand-blue-light);
}

/* ==========================================================================
   BUTTON COMPONENTS
   ========================================================================== */

/* Primary Button - Orange (Main CTA) */
.lira-btn-primary {
    background-color: var(--brand-orange);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color 0.15s;
    border: none;
    cursor: pointer;
}

.lira-btn-primary:hover {
    background-color: var(--brand-orange-dark);
}

/* Secondary Button - Blue */
.lira-btn-secondary {
    background-color: var(--brand-blue);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color 0.15s;
    border: none;
    cursor: pointer;
}

.lira-btn-secondary:hover {
    background-color: #06395a;
}

/* Tertiary Button - Outlined */
.lira-btn-tertiary {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    background-color: white;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color 0.15s;
    cursor: pointer;
}

.lira-btn-tertiary:hover {
    background-color: #f9fafb;
}

/* Add to Cart Button - Specific styling for cart buttons */
.lira-btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-orange);
    color: white;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    width: 100%;
    max-width: 200px;
    transition: background-color 0.15s;
    border: none;
    cursor: pointer;
}

.lira-btn-cart:hover {
    background-color: var(--brand-orange-dark);
}

/* Add to Cart Button - Small variant */
.lira-btn-cart--sm {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-orange);
    color: white;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    width: 100%;
    transition: background-color 0.15s;
    border: none;
    cursor: pointer;
}

.lira-btn-cart--sm:hover {
    background-color: var(--brand-orange-dark);
}

/* Add to Cart Button - Medium variant */
.lira-btn-cart--md {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-orange);
    color: white;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: background-color 0.15s;
    border: none;
    cursor: pointer;
}

.lira-btn-cart--md:hover {
    background-color: var(--brand-orange-dark);
}

/* Icon Button - Round buttons with icons */
.lira-btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s;
    border: none;
    cursor: pointer;
}

.lira-btn-icon:hover {
    background-color: #f3f4f6;
}

/* Icon Button - Blue variant */
.lira-btn-icon--blue {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: var(--brand-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s;
    border: none;
    cursor: pointer;
}

.lira-btn-icon--blue:hover {
    transform: rotate(180deg);
}

/* Icon Button - Small */
.lira-btn-icon--sm {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s;
    border: none;
    cursor: pointer;
}

.lira-btn-icon--sm:hover {
    background-color: #f3f4f6;
}

/* Login/Submit Button - Arrow forward button */
.lira-btn-submit {
    background-color: var(--brand-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 31px;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s;
}

.lira-btn-submit:hover {
    background-color: var(--brand-orange-dark);
}

/* Large Button - For prominent actions */
.lira-btn-large {
    padding: 0.75rem 2.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color 0.15s;
    border: none;
    cursor: pointer;
}

/* ================================================
   COMPONENT: ActionButtonPair (standard version)
   ================================================
   Navigation button pair for "refresh" + "full list" actions
   Used consistently across product sections
   ================================================ */

/* Base class for all action buttons in the pair */
.lira-action-btn, .lira-action-btn:visited {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; /* gap-2 */
  background-color: var(--brand-blue);
  color: white;
  padding: 0.25rem 0.75rem; /* px-3 py-1 */
  transition: background-color 0.15s ease, color 0.15s ease;
}

.lira-action-btn:hover {
  background-color: #1e5a7e; /* hover:bg-blue-800 equivalent */
  color: white;
}

/* First button in pair (left button - refresh) */
.lira-action-btn--first {
  margin-right: 0.75rem; /* mr-3 */
}

/* Second button in pair (right button - full list) */
.lira-action-btn--last {
  margin-right: 0rem;
}

/* ==========================================================================
   PRODUCT COMPONENTS
   ========================================================================== */

/* Price Block - Two-row price display */
.lira-price-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
}

.lira-price-block__wrapper {
    margin-bottom: 0.5rem;
}

.lira-price-block__original {
    font-size: 0.75rem;
    color: #6b7280;
}

.lira-price-block__original-amount {
    text-decoration: line-through;
    margin-left: 0.25rem;
}

.lira-price-block__online {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.lira-price-block__online-amount {
    margin-left: 0.25rem;
}

/* Price Block - Large variant (for product detail) */
.lira-price-block--large .lira-price-block__original-amount {
    font-size: 1rem;
    color: #1f2937;
}

.lira-price-block--large .lira-price-block__online-amount {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--brand-blue);
}

/* Product Card - Complete product display */
.lira-product-card {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #d1d5db;
}

.lira-product-card:last-child {
    border-right: none;
}

/* Book Card - Horizontal layout (for grid display) */
.lira-book-card-horizontal {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #d1d5db;
}

.lira-book-card-horizontal:last-child {
    border-right: none;
}

/* Book Card - Vertical layout (for sidebar/list display) */
.lira-book-card-vertical {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #d1d5db;
}

.lira-book-card-vertical:last-child {
    border-bottom: none;
}

.lira-product-card__header {
    margin-bottom: 0.5rem;
    min-height: 48px;
}

.lira-product-card__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-blue);
    line-height: 1.25;
    margin-bottom: 0.25rem;
    min-height: 36px;
    display: block;
}

.lira-product-card__title:hover {
    text-decoration: underline;
}

.lira-product-card__author {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
    display: block;
}

.lira-product-card__author:hover {
    text-decoration: underline;
}

.lira-product-card__content {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
}

/* Product Image */
.lira-product-image {
    height: auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.lira-product-image--sm {
    width: var(--product-image-width-small);
}

.lira-product-image--md {
    width: var(--product-image-width-medium);
}

.lira-product-image--lg {
    width: var(--product-image-width-large);
}

.lira-product-image--xl {
    max-width: var(--product-image-max-width-large);
}

/* Product Badge */
.lira-badge {
    position: absolute;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    top: var(--badge-top-offset);
    left: var(--badge-left-offset);
}

.lira-badge--new {
    background-color: #fb923c;
}

.lira-badge--coming {
    background-color: var(--brand-blue);
}

.lira-badge--sale {
    background-color: #ef4444;
}

/* E-book Tape Warning - Rotated banner indicating digital-only product */
.lira-ekonyv-tape-warning {
    position: absolute;
    background-color: #8dc73f;
    color: #000;
    font-weight: bold;
    transform: rotate(-28deg);
    text-align: center;
    bottom: 45px;
    left: -20px;
    padding-top: 12px;
    padding-left: 50px;
    padding-right: 50px;
    font-size: 18px;
    width: 380px;
    height: 48px;
    z-index: 10;
}

/* Product Rating Number Badge (on sidebar lists) */
.lira-badge-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: var(--brand-blue);
    border: 1px solid var(--brand-blue);
    border-radius: 9999px;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    bottom: var(--badge-bottom-offset);
    z-index: 10;
}

/* Star Rating */
.lira-star-rating {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Category Tag */
.lira-category-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: #e5e7eb;
    color: #374151;
}

/* ==========================================================================
   NAVIGATION COMPONENTS
   ========================================================================== */

/* Top Navbar - Blue bar with links */
.lira-top-navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.lira-top-navbar__nav {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.25rem;
    font-size: 0.8125rem;
    white-space: nowrap;
    background-color: var(--brand-blue);
    padding: 0.3rem 0.4rem;
    max-width: 100%;
    overflow: hidden;
}

.lira-top-navbar__separator {
    color: rgba(147, 197, 253, 0.7);
}

/* Main Navbar Right - Blue section */
.lira-main-navbar-right {
    width: auto;
    background-color: var(--brand-blue);
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Breadcrumb */
.lira-breadcrumb {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #374151;
}

.lira-breadcrumb__nav {
    display: flex;
    align-items: center;
}

.lira-breadcrumb__item {
    display: inline;
}

.lira-breadcrumb__link {
    color: #374151;
}

.lira-breadcrumb__link:hover {
    color: #2563eb;
}

.lira-breadcrumb__current {
    color: #111827;
    font-weight: 500;
}

/* Pagination */
.lira-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.lira-pagination__label {
    font-size: 0.875rem;
    color: #374151;
}

.lira-pagination__link {
    color: var(--brand-blue);
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.lira-pagination__link:hover {
    color: #06395a;
}

.lira-pagination__page {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border: 1px solid #d1d5db;
    color: #1f2937;
}

.lira-pagination__page:hover {
    background-color: #f9fafb;
}

.lira-pagination__page--active {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border: 1px solid #d1d5db;
    background-color: var(--brand-blue);
    color: white;
}

.lira-pagination__page--active:hover {
    background-color: #06395a;
}

/* Logo Container */
.lira-logo {
    width: 25%;
    padding: 1rem;
    display: flex;
    align-items: center;
}

.lira-logo__link {
    display: inline-block;
}

.lira-logo__img {
    height: auto;
    max-width: 140px;
}

/* Shopping Cart Summary Widget */
.lira-cart-widget {
    border: 1px solid #d1d5db;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    width: var(--shopping-cart-width);
}

.lira-cart-widget__text {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-align: end;
}

.lira-cart-widget__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lira-cart-widget__info {
    font-size: 1rem;
}

.lira-cart-widget__count {
    font-weight: 600;
}

/* ==========================================================================
   INTERACTIVE COMPONENTS
   ========================================================================== */

/* Tooltip */
.lira-tooltip {
    position: relative;
    display: inline-block;
}

.lira-tooltip__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: white;
    border-radius: 9999px;
    background-color: #9ca3af;
    transition: background-color 0.15s;
    border: none;
    cursor: pointer;
}

.lira-tooltip__button:hover {
    background-color: #6b7280;
}

.lira-tooltip__content {
    position: absolute;
    left: 50%;
    bottom: 100%;
    z-index: 50;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.75rem;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: white;
    white-space: nowrap;
    background-color: #111827;
    border-radius: 0.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

/* Quantity Selector */
.lira-quantity {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lira-quantity__btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s;
    border: none;
    cursor: pointer;
}

.lira-quantity__btn:hover {
    background-color: #f3f4f6;
}

.lira-quantity__input {
    width: 3rem;
    height: 2rem;
    text-align: center;
    font-size: 0.875rem;
    border: 1px solid #d1d5db;
}

.lira-quantity__input:focus {
    outline: none;
    border-color: var(--brand-blue);
}

.lira-quantity__label {
    font-size: 0.875rem;
    color: #374151;
}

/* Collapsible Panel */
.lira-collapsible__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: white;
    transition: background-color 0.15s;
    width: 100%;
    border: none;
    cursor: pointer;
    text-align: left;
}

.lira-collapsible__trigger:hover {
    background-color: #f9fafb;
}

.lira-collapsible__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background-color: var(--brand-blue);
    color: white;
    transition: transform 0.15s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.lira-collapsible__icon--rotated {
    transform: rotate(180deg);
}

.lira-collapsible__content {
    overflow: hidden;
}

.lira-collapsible__inner {
    padding: 1rem;
    border-top: 1px solid #d1d5db;
    background-color: #f9fafb;
}

/* ==========================================================================
   UTILITY COMPONENTS
   ========================================================================== */

/* Text Utilities */
.lira-text-xs {
    font-size: 0.75rem;
    color: #6b7280;
}

.lira-text-sm {
    font-size: 0.875rem;
    color: #374151;
}

.lira-text-base {
    font-size: 1rem;
}

.lira-text-brand-blue {
    color: var(--brand-blue);
}

.lira-text-semibold {
    font-weight: 600;
}

/* Link Styling */
.lira-link {
    color: var(--brand-blue);
}

.lira-link:hover {
    text-decoration: underline;
}

/* Section Title with decorative lines */
.lira-section-title {
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
}

.lira-section-title__wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.lira-section-title__line-start {
    width: 50px;
    border-top: 1px solid #d1d5db;
}

.lira-section-title__text {
    padding-right: 1rem;
    padding-left: var(--title-padding-left);
}

.lira-section-title__text span {
    font-size: 1rem;
    font-family: sans-serif;
    white-space: nowrap;
}

.lira-section-title__line-end {
    flex: 1;
    border-top: 1px solid #d1d5db;
}

/* Separator Line */
.lira-separator {
    display: flex;
    justify-content: center;
}

.lira-separator__line {
    border-top: 1px solid #d1d5db;
    width: 70%;
}

/* Tag Cloud Link */
.lira-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background-color: var(--brand-blue);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: opacity 0.15s;
}

.lira-tag:hover {
    opacity: 0.9;
}

/* ==========================================================================
   COMPLEX COMPONENTS
   ========================================================================== */

/* Search Bar Container */
.lira-search {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lira-search__wrapper {
    flex: 1;
    display: flex;
    flex-direction: row;
    position: relative;
}

.lira-search__form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.lira-search__input-group {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    flex: 1;
    padding: 0;
    height: 36px;
}

.lira-search__input {
    flex: 1;
    min-width: 240px;
    padding: 0.375rem 0.75rem;
    border: none;
    font-size: 0.875rem;
}

.lira-search__input:focus {
    outline: none;
}

.lira-search__select {
    padding: 0.375rem 0.25rem;
    border-left: 1px solid #d1d5db;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
    font-size: 0.8125rem;
    background-color: white;
    min-width: 90px;
}

.lira-search__select:focus {
    outline: none;
}

.lira-search__btn {
    background-color: var(--brand-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 100%;
    border: none;
    margin: 0;
    cursor: pointer;
}

.lira-search__btn:hover {
    background-color: var(--brand-orange-dark);
}

.lira-search__advanced-btn {
    padding: 0.375rem 0.5rem;
    height: 100%;
    background-color: #f3f4f6;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.lira-search__advanced-btn:hover {
    background-color: #f9fafb;
}

.lira-search__advanced-btn:focus {
    outline: none;
}

/* Detailed Search Panel (Dropdown) */
.lira-search-panel {
    position: absolute;
    top: 100%;
    margin-top: 0.5rem;
    width: 400px;
    max-width: 90vw;
    background-color: white;
    border: 1px solid #d1d5db;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    z-index: 50;
}

/* Checkout Progress Indicator */
.lira-checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    margin-bottom: 1rem;
}

.lira-checkout-progress__container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 56rem;
    position: relative;
}

.lira-checkout-progress__line {
    position: absolute;
    top: 1.25rem;
    height: 0.25rem;
    background-color: #d1d5db;
    z-index: 0;
}

.lira-checkout-progress__line--active {
    background-color: var(--brand-orange);
}

.lira-checkout-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 10;
}

.lira-checkout-progress__circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.lira-checkout-progress__circle--active {
    background-color: var(--brand-orange);
}

.lira-checkout-progress__circle--inactive {
    background-color: #e5e7eb;
    border: 2px solid #9ca3af;
}

.lira-checkout-progress__number {
    font-weight: 600;
    font-size: 1rem;
}

.lira-checkout-progress__number--active {
    color: white;
}

.lira-checkout-progress__number--inactive {
    color: #4b5563;
}

.lira-checkout-progress__label {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.lira-checkout-progress__label--active {
    color: var(--brand-orange);
}

.lira-checkout-progress__label--inactive {
    color: #4b5563;
}

/* Loyalty Program Card */
.lira-loyalty-card {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
}

.lira-loyalty-card__image {
    height: 3rem;
    width: auto;
}

.lira-loyalty-card__text {
    flex: 1;
}

.lira-loyalty-card__label {
    font-size: 0.75rem;
    color: #6b7280;
    letter-spacing: 0.05em;
}

/* Login Form */
.lira-login-form {
    flex: 1;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.lira-login-form__wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Sidebar Banner Link */
.lira-sidebar-banner {
    padding: 0;
    margin-bottom: 1rem;
    display: flex;
}

.lira-sidebar-banner__link {
    transition: transform 0.3s;
}

.lira-sidebar-banner__link:hover {
    transform: scale(1.05);
}

.lira-sidebar-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Order Summary */
.lira-order-summary {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.lira-order-summary__row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lira-order-summary__label {
    font-size: 0.875rem;
    color: #374151;
}

.lira-order-summary__label--highlight {
    color: var(--brand-orange);
}

.lira-order-summary__label--large {
    font-size: 1.5rem;
    color: var(--brand-blue);
    font-weight: 600;
}

.lira-order-summary__value {
    font-size: 0.875rem;
    color: #111827;
    font-weight: 600;
}

.lira-order-summary__value--large {
    font-size: 1.5rem;
    color: #111827;
    font-weight: 600;
}

/* Action Button Group */
.lira-action-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

/* Footer */
.lira-footer {
    display: flex;
    justify-content: center;
    background-color: white;
}

.lira-footer__content {
    width: 100%;
}

@media (min-width: 768px) {
    .lira-footer__content {
        width: 1200px;
    }
}

.lira-footer__inner {
    background-color: #f2f2f2;
    padding: 2.5rem 3rem;
    margin-top: 3rem;
    font-size: 0.875rem;
    color: #374151;
}

.lira-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .lira-footer__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lira-footer__heading {
    color: #1f3954;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.lira-footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ==========================================================================
   COMPONENT: SideBanner (standard version)
   ==========================================================================
   Fixed position side banners for promotional content
   ========================================================================== */

.lira-side-banner {
    position: fixed;
    top: 0;
    background-color: white;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 10;
    left: 50%;
    width: var(--banner-width);
    height: var(--banner-height);
}

.lira-side-banner--left {
    margin-left: calc(-600px - var(--banner-width) - 20px);
}

.lira-side-banner--right {
    margin-left: calc(600px + 20px);
}

.lira-side-banner--left-bg {
    background-image: url('https://lira.erbacdn.net/landings/kreativok/2025_12_04_igy_is_ehetunk_hatter_bal_oldal_v2.jpg');
}

.lira-side-banner--right-bg {
    background-image: url('https://lira.erbacdn.net/landings/kreativok/2025_12_04_igy_is_ehetunk_hatter_jobb_oldal.jpg');
}

/* ==========================================================================
   COMPONENT: NewsletterSubscription (standard version)
   ==========================================================================
   Single-row newsletter CTA: icon, descriptive text, subscribe button.
   Button uses brand-blue to match lira-action-btn / blue action buttons.
   ========================================================================== */

.lira-newsletter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #d1d5db;
    background-color: white;
    overflow: hidden;
    padding: 0;
}

.lira-newsletter__content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
    padding: 0;
}

.lira-newsletter__icon {
    flex-shrink: 0;
    color: #4b5563;
    font-size: 1.5rem;
    padding: 0.5rem;
}

.lira-newsletter__text {
    margin: 0 !important;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
    padding: 0.5rem;
}

.lira-newsletter__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    margin: 4px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    background-color: var(--brand-blue);
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.lira-newsletter__btn:hover {
    background-color: #1e5a7e;
    color: white;
}
