/* Reset ir baziniai stiliai */ 
* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*
  ==========================================================
  STILIŲ STRUKTŪRA (tvarka nekeista, kad NESIKEISTŲ dizainas)

  1) Reviews / Account
  2) Admin panel
  3) Global (body, img, container)
  4) Header / Nav / Auth / User menu
  5) Hero / About / Features / CTA / Catalog
  6) Products
  7) Footer
  8) Responsive (bendri)
  9) Cart / Checkout
  10) Notification
  11) Support widget
  ==========================================================
*/

/* ==========================================================
   REVIEWS / ACCOUNT
   ========================================================== */

/* Reviews sekcija */
.reviews-section {
    padding: 2rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.review-form-card,
.reviews-list-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.account-card {
    max-width: 640px;
    margin: 0 auto;
}

.account-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.75rem;
}

.account-stats {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a2a;
}

.account-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.35rem 0;
    color: #cbd5f5;
}

.account-stat-row strong {
    color: #e2e8f0;
    font-weight: 900;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-form input {
    padding: 0.9rem 1rem;
    border: 2px solid #2f2f2f;
    border-radius: 8px;
    font-size: 1rem;
    background: #0f0f0f;
    color: #e2e8f0;
}

.review-form label {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

/* Star rating styles */
.star-rating {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0;
    font-size: 2rem;
}

.star {
    color: #444;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.star:hover {
    color: #d4af37;
    transform: scale(1.1);
}

.star.active {
    color: #d4af37;
}

.star.active:hover {
    color: #e6c05a;
}

.review-form textarea {
    padding: 0.9rem 1rem;
    border: 2px solid #2f2f2f;
    border-radius: 8px;
    font-size: 1rem;
    background: #0f0f0f;
    color: #e2e8f0;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 420px;
    overflow: auto;
}

/* ==========================================================
   ADMIN PANEL
   ========================================================== */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.25rem 0 1.25rem;
}

.admin-guard {
    display: flex;
    justify-content: center;
    margin: 1.25rem 0 1.25rem;
}

.admin-guard-card {
    width: 100%;
    max-width: 560px;
    border: 1px solid #333;
    background: #0f0f0f;
    border-radius: 12px;
    padding: 1.25rem 1.2rem;
    color: #cbd5f5;
    text-align: center;
}

.admin-guard-spinner {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.85rem;
    border-radius: 999px;
    border: 3px solid rgba(203, 213, 245, 0.18);
    border-top-color: rgba(212, 175, 55, 0.95);
    animation: admin-spin 0.9s linear infinite;
}

.admin-guard-title {
    color: #e2e8f0;
    font-weight: 900;
    font-size: 1.05rem;
}

.admin-guard-sub {
    margin-top: 0.35rem;
    color: #cbd5f5;
    font-size: 0.9rem;
    opacity: 0.9;
}

@keyframes admin-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.admin-tabs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin: 0.75rem 0 1.1rem;
}

.admin-tab-btn {
    border: 1px solid #333;
    background: #0f0f0f;
    color: #cbd5f5;
    border-radius: 12px;
    padding: 0.55rem 0.9rem;
    cursor: pointer;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-tab-btn:hover {
    border-color: #444;
    background: #141414;
}

.admin-tab-btn.active {
    border-color: rgba(212, 175, 55, 0.65);
    background: rgba(212, 175, 55, 0.10);
    color: #d4af37;
}

.admin-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 8px;
    margin-left: 0.5rem;
    border-radius: 999px;
    border: 1px solid #333;
    background: #0b0b0b;
    color: #cbd5f5;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
}

.admin-tab-btn.active .admin-tab-count {
    border-color: rgba(212, 175, 55, 0.55);
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
}

.admin-view {
    display: none;
}

.admin-view[data-open="1"] {
    display: block;
}

.admin-empty {
    border: 1px solid #333;
    background: #0f0f0f;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    color: #cbd5f5;
    opacity: 0.95;
    margin: 0.25rem 0 1.25rem;
}

.admin-stat-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.admin-stat-label {
    color: #cbd5f5;
    font-weight: 700;
    font-size: 0.9rem;
}

.admin-stat-value {
    margin-top: 0.35rem;
    color: #d4af37;
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: 0.2px;
}

.admin-toolbar {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.admin-search {
    flex: 1;
    min-width: 240px;
}

.admin-search input {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid #444;
    border-radius: 10px;
    background: #0f0f0f;
    color: #e2e8f0;
    outline: none;
}

.admin-search input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.admin-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1rem;
    align-items: start;
}

.admin-view[data-open="1"] .admin-layout {
    min-height: 520px;
}

.admin-panel-title {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: #e2e8f0;
}

.admin-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.admin-panel-top .admin-panel-title {
    margin-bottom: 0;
}

.admin-back-btn {
    border: 1px solid #333;
    background: #0f0f0f;
    color: #cbd5f5;
    border-radius: 12px;
    padding: 0.45rem 0.75rem;
    cursor: pointer;
    font-weight: 900;
    display: none;
}

.admin-back-btn:hover {
    border-color: rgba(212, 175, 55, 0.6);
    color: #d4af37;
}

.admin-orders-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 520px;
    overflow: auto;
    scrollbar-gutter: stable;
}

.admin-order-item {
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 0.9rem 1.05rem;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.admin-order-item:hover {
    border-color: #444;
    background: #171717;
}

.admin-order-item.selected {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.admin-order-top {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: baseline;
}

.admin-order-id {
    color: #e2e8f0;
    font-weight: 900;
}

.admin-order-email {
    color: #cbd5f5;
    font-size: 0.92rem;
    overflow-wrap: anywhere;
}

.admin-order-total {
    color: #d4af37;
    font-weight: 900;
    white-space: nowrap;
}

.admin-order-meta {
    margin-top: 0.35rem;
    color: #cbd5f5;
    font-size: 0.85rem;
    opacity: 0.9;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.admin-detail-card {
    padding: 0.8rem 0.9rem;
    border: 1px solid #333;
    border-radius: 10px;
    background: #0f0f0f;
}

.admin-detail-card-title {
    font-weight: 900;
    color: #e2e8f0;
    margin-bottom: 0.45rem;
}

.admin-detail-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 0.75rem;
}

.admin-action-btn {
    border: 1px solid #444;
    background: transparent;
    color: #e2e8f0;
    border-radius: 10px;
    padding: 0.35rem 0.65rem;
    cursor: pointer;
    font-weight: 800;
}

.admin-action-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.admin-acc {
    border: 1px solid #333;
    border-radius: 10px;
    background: #0f0f0f;
    overflow: hidden;
}

.admin-acc + .admin-acc {
    margin-top: 0.75rem;
}

.admin-acc-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    background: #0f0f0f;
    border: none;
    color: #e2e8f0;
    cursor: pointer;
    font-weight: 900;
    text-align: left;
}

.admin-acc-toggle:hover {
    background: #141414;
}

.admin-acc-caret {
    color: #d4af37;
    font-weight: 900;
    transition: transform 0.18s ease;
}

.admin-acc[data-open="0"] .admin-acc-caret {
    transform: rotate(-90deg);
}

.admin-acc-body {
    padding: 0.75rem 0.9rem;
    border-top: 1px solid #2a2a2a;
}

.admin-acc[data-open="0"] .admin-acc-body {
    display: none;
}

.admin-kv {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0.5rem;
    color: #cbd5f5;
    font-size: 0.92rem;
    line-height: 1.55;
}

.admin-kv strong {
    color: #e2e8f0;
}

.admin-copy-btn {
    margin-left: 0.5rem;
    border: 1px solid #444;
    background: transparent;
    color: #d4af37;
    border-radius: 8px;
    padding: 0.2rem 0.5rem;
    cursor: pointer;
    font-weight: 800;
}

.admin-copy-btn:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.08);
}

@media (max-width: 968px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .admin-stats {
        grid-template-columns: 1fr;
    }
    .admin-orders-list {
        max-height: 380px;
    }
    .admin-kv {
        grid-template-columns: 1fr;
    }

    .admin-back-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    #adminSection[data-mobile-detail="1"] .admin-orders-panel {
        display: none;
    }
}

.review-item {
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.review-item .review-meta {
    display: flex;
    justify-content: space-between;
    color: #cbd5f5;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.review-item .review-comment {
    color: #e2e8f0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.review-item .stars {
    color: #ffd700;
    letter-spacing: 1px;
}

@media (max-width: 968px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   GLOBAL (BODY / IMG)
   ========================================================== */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #0a0a0a;
    color: #e2e8f0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

 textarea {
     resize: none;
 }

/* Universal image responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================
   PAGE BACKGROUND
   ========================================================== */

/* BACKGROUNDAS */
.home-body {
    background:
        /* Refined subtle diagonal texture (no glows/vignette) */
        repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.025) 0 1px, rgba(212, 175, 55, 0) 1px 20px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.01) 0 1px, rgba(255, 255, 255, 0) 1px 22px),
        #0b0b0b;
    color: #e5e7eb;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================
   HEADER / NAV
   ========================================================== */

/* Header */
.header {
    background: #0f0f0f;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    margin: 0;
}

.logo-heat {
    color: #ffffff;
}

.logo-craft {
    color: #d4af37;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

html[lang="lt"] .nav {
    flex-wrap: nowrap;
    gap: 1rem;
}

/* Auth actions on the right */
.auth-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px; /* keep header layout stable */
}

.login-btn,
.logout-btn {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid #444;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

html[lang="lt"] .login-btn,
html[lang="lt"] .logout-btn {
    padding: 0.3rem 0.65rem;
    font-size: 0.85rem;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.45);
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    font-size: 0.85rem;
}

html[lang="lt"] .admin-badge {
    padding: 0.3rem 0.55rem;
    font-size: 0.85rem;
}

.admin-badge:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.7);
}

.admin-crown {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.admin-crown svg {
    width: 18px;
    height: 18px;
    display: block;
}

.admin-text {
    display: inline-block;
}

.login-btn:hover,
.logout-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.user-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1;
    padding: 0.25rem 0.4rem;
    white-space: nowrap;
    cursor: pointer;
}

.user-chip-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    flex-shrink: 0;
}

.user-chip-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.user-chip-text {
    display: inline-block;
}

/* User dropdown */
.user-menu { position: relative; }
.user-dropdown {
    position: absolute;
    right: 0;
    top: 120%;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 180px;
    padding: 0.4rem;
    display: none;
    z-index: 1200;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.user-dropdown a,
.user-dropdown button {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: #e2e8f0;
    padding: 0.5rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
}
.user-dropdown a:hover,
.user-dropdown button:hover { background: #1b1b1b; }

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    padding: 0.35rem 0.65rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0 0.1rem;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    font-size: 0.85rem;
}

html[lang="lt"] .nav-link {
    padding: 0.35rem 0.65rem;
    margin: 0 0.1rem;
    font-size: 0.85rem;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-link.active {
    color: #d4af37;
    font-weight: 600;
    background: rgba(100, 85, 0, 0.15);
    border: 1px solid #d4af37;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
}

.cart-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 5px;
    color: #d4af37;
    transition: all 0.3s ease;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.3rem;
}

html[lang="lt"] .lang-switch {
    margin-left: 0.3rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.25rem 0.4rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lang-btn.active {
    opacity: 1;
    font-weight: 600;
    text-decoration: underline;
}

.lang-btn:hover {
    opacity: 1;
}

.lang-separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.cart-link:hover .cart-icon {
    transform: scale(1.1);
}

.cart-badge {
position: absolute;
top: -6px;
right: -6px;
background: #ffd700;
color: #111111;
border-radius: 999px;
min-width: 22px;
height: 22px;
padding: 0 6px;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 13px;
font-weight: 700;
line-height: 1;
text-align: center;
border: 2px solid #0f0f0f;
z-index: 10;
opacity: 1;
visibility: visible;
transition: transform 0.2s ease;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
font-variant-numeric: tabular-nums;
}

@keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
}

/* Main content */
main {
    flex: 1;
    padding: 100px 0 48px;
}

/* Auth modal */
.auth-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.auth-modal {
    width: 100%;
    max-width: 420px;
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.auth-modal h3 {
    margin-bottom: 0.75rem;
}

.auth-modal .form-group label {
    color: #cbd5f5;
}

.auth-modal .form-group input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #444;
    background: #0f0f0f;
    color: #e2e8f0;
    outline: none;
}

.auth-modal .form-group input:focus {
    border-color: #d4af37;
}

.auth-link {
    background: transparent;
    border: none;
    color: #d4af37;
    padding: 0;
    cursor: pointer;
    font-weight: 600;
    text-align: left;
}

.auth-link:hover {
    color: #e6c05a;
    text-decoration: underline;
}

.auth-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.auth-tab {
    flex: 1;
    background: #1b1b1b;
    color: #cbd5f5;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
}

.auth-tab.active {
    border-color: #d4af37;
    color: #d4af37;
}

.auth-actions-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.auth-close-btn {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid #444;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    cursor: pointer;
}

.auth-submit-btn {
    background: #d4af37;
    border: none;
    color: #1a1a1a;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

 .auth-error {
     color: #ff8e8e;
     font-size: 0.9rem;
     margin-top: 0.5rem;
 }

/* ==========================================================
   HOME PAGE SECTIONS (HERO / ABOUT / FEATURES / CTA)
   ========================================================== */

/* Hero sekcija */
.hero {
    padding: 6rem 0 5rem;
    background: transparent;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    color: #1a1a1a;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #ffdf40 0%, #ffd700 100%);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-button.secondary {
    background: #2a2a2a;
    color: #d4af37;
    border: 1px solid #d4af37;
}

.cta-button.secondary:hover {
    background: #333;
    color: #e6c05a;
}

.cta-button.white {
    background: white;
    color: #d4af37;
}

.cta-button.white:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.empty-cart .cta-button {
    margin: 1.5rem auto 0;
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.empty-cart .cta-button:hover {
    background: linear-gradient(135deg, #ffdf40 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* CTA mygtukas */
.cta-button {
    display: inline-block;
    background: #d4af37;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #e6c05a;
    transform: translateY(-2px);
}

/* About sekcija */
.about {
    margin-bottom: 0;
    padding: 5rem 0;
    background: transparent;
    border-radius: 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.about#contacts .section-title {
    color: #d4af37;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    font-weight: 800;
    position: relative;
}

.about#contacts .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
}

.about#reviews .section-title {
    color: #d4af37;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    font-weight: 800;
    position: relative;
}

.about#reviews .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #cbd5f5;
    text-align: center;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.about-text {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about#contacts .about-text {
    color: #f8f9fa;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 2rem 3rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    position: relative;
    backdrop-filter: blur(5px);
    max-width: 900px;
    margin: 2rem auto 0;
}

.about#reviews .about-text {
    color: #f8f9fa;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 2rem 3rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    position: relative;
    backdrop-filter: blur(5px);
    max-width: 900px;
    margin: 2rem auto 0.5rem;
}

.about-text:last-of-type {
    margin-bottom: 2.5rem;
}

.about-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    justify-content: center;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: #e5e7eb;
    font-weight: 500;
}

.about-feature-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #d4af37 0%, #d4af37 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Features sekcija */
.features {
    margin-bottom: 0;
    padding: 5rem 0;
    background: transparent;
}

.features-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: #1a1a1a;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

/* cleanup: removed accidental global styling on .home-body previously tied to ::before */

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #d4af37);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    border-color: #444;
    background: #202020;
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-icon {
    font-size: 3.5rem;
    display: inline-block;
    transition: transform 0.3s;
    color: #d4af37;
}

.feature-icon i {
    color: #d4af37;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: #e5e7eb;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.feature-card:hover h3,
.feature-card:hover p {
    color: #e5e7eb;
}

.feature-card p {
    color: #cbd5f5;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* CTA sekcija */
.cta-section {
    text-align: center;
    padding: 5rem 3rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-section .cta-button {
    background: white;
    color: #d4af37;
}

.cta-section .cta-button:hover {
    background: #f7fafc;
}

/* ==========================================================
   CATALOG / PRODUCTS
   ========================================================== */

/* Katalogo sekcija */
.catalog-section {
    min-height: calc(100vh - 200px);
}

.catalog-title {
    font-size: 2.5rem;
    color: #e5e7eb;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.search-bar {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.search-input {
    width: 100%;
    max-width: 600px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    outline: none;
    transition: all 0.2s ease;
    margin: 0 auto 2rem;
    display: block;
    color: #f8fafc;
}

.search-input::placeholder {
    color: #666;
}

.search-input:focus {
    border-color: #d4af37;
    background: #222;
}

.catalog-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    align-items: end;
    max-width: 900px;
    margin: 0 auto 2.25rem;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.85);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.filter-group label {
    color: #cbd5f5;
    font-weight: 700;
    font-size: 0.9rem;
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid #444;
    border-radius: 10px;
    background: #0f0f0f;
    color: #e2e8f0;
    outline: none;
}

.filter-input:focus,
.filter-select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.filter-clear-btn {
    border: 1px solid rgba(212, 175, 55, 0.6);
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    cursor: pointer;
    font-weight: 900;
    white-space: nowrap;
}

.filter-clear-btn:hover {
    background: rgba(212, 175, 55, 0.18);
}

.filter-group--checkbox {
    gap: 0.4rem;
}

.filter-group--checkbox label {
    margin: 0;
    font-size: 0.9rem;
}

.filter-toggle {
    /* no longer used; kept for safety */
}

.filter-toggle:hover {
    border-color: #d4af37;
    background: #111111;
}

.filter-toggle-text {
    font-weight: 700;
    color: inherit;
    font-size: 0.9rem;
    line-height: 1.4;
}

.filter-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: #0b0b0b;
    border: 1px solid #555;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.filter-checkbox::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    width: 7px;
    height: 9px;
    border-right: 2px solid #0b0b0b;
    border-bottom: 2px solid #0b0b0b;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.filter-checkbox:checked {
    background: #d4af37;
    border-color: #d4af37;
}

.filter-checkbox:checked::after {
    opacity: 1;
}

.filter-checkbox-field {
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem 0.9rem;
    border: 1px solid #444;
    border-radius: 10px;
    background: #0f0f0f;
}

.filter-checkbox:focus-visible {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* Highlight the whole row when keyboard focusing the toggle */
.filter-toggle:has(.filter-checkbox:focus-visible) {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.65);
}

/* Prekių tinklelis */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    border: 1px solid #333;
}

.product-card:hover {
    border-color: #444;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-image {
        height: 200px;
    }

    .catalog-filters {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0.9rem;
    }
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.2s ease;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #ffd700;
    color: #0a0a0a;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    border: 2px solid #0f0f0f;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
    line-height: 1;
}

/* Keep images static so they never get clipped */
.product-card:hover .product-image img {
    transform: scale(1.02);
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.18);
    background: rgba(0, 0, 0, 0.35);
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.favorite-btn svg {
    width: 20px;
    height: 20px;
}

.favorite-btn:hover {
    transform: translateY(-1px);
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(212, 175, 55, 0.55);
}

.favorite-btn.is-fav {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.75);
    background: rgba(212, 175, 55, 0.16);
}

.favorite-btn.is-fav svg {
    fill: currentColor;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-size: 1.3rem;
    color: #f8fafc;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-description {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-stock {
    font-size: 0.9rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.product-stock-count {
    color: #d4af37;
}

.product-stock.out {
    color: #ef4444;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.product-price-wrap {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-price-new {
    font-size: 1.8rem;
    font-weight: 800;
    color: #d4af37;
}

.product-price-old {
    font-size: 1.05rem;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    opacity: 0.9;
}

.add-to-cart-btn {
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.add-to-cart-btn[disabled],
.add-to-cart-btn[aria-disabled="true"] {
    background: #2a2a2a;
    color: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

.add-to-cart-btn:hover {
    background: #e6c05a;
    transform: translateY(-2px);
}

.add-to-cart-btn:hover::before {
    transform: scale(1.2) rotate(-10deg);
}

.add-to-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(226, 216, 74, 0.3);
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #4a5568;
    font-size: 1.2rem;
}

/* ==========================================================
   FOOTER
   ========================================================== */

/* Footer */
.footer {
    background-color: #483d2d;
    color: white;
    padding: 2rem 0;
    margin-top: auto;
}

.footer .container {
    text-align: center;
}

/* ==========================================================
   RESPONSIVE (BENDRI)
   ========================================================== */

/* Responsive dizainas */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        gap: 1rem;
        width: 100%;
        justify-content: center;
    }

    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.95rem;
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    .cart-link {
        min-width: 40px;
        min-height: 40px;
    }

    .lang-switch {
        margin-left: 0;
    }

    .hero {
        padding: 4rem 0;
        background: transparent;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .cta-button {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title,
    .catalog-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about {
        padding: 3rem 0;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-features {
        flex-direction: column;
        gap: 1rem;
    }

    .features {
        padding: 3rem 0;
    }

    .cta-section {
        padding: 3rem 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .product-image {
        height: 200px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    /* Add more top space for fixed header on small screens */
    main {
        padding: 130px 0 48px;
    }
}

/* ==========================================================
   CART
   ========================================================== */

/* Krepšelio stiliai */
.cart-section {
    min-height: calc(100vh - 200px);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}

.cart-title {
    font-size: 2.5rem;
    color: #e5e7eb;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-content {
    max-width: 500px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #333;
    color: #e2e8f0;
    text-align: center;
}

.empty-cart-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.empty-cart-content h2 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.empty-cart-content p {
    font-size: 1.1rem;
    color: #a0aec0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cart-items {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #333;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #333;
    transition: all 0.2s ease;
    color: #e2e8f0;
    background: #1f1f1f;
    margin-bottom: 0.5rem;
    border-radius: 6px;
}

.cart-item:hover {
    background-color: #252525;
}

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

.cart-item-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cart-item:hover .cart-item-image {
    transform: scale(1.05);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info h3 {
    font-size: 1.2rem;
    color: #f8fafc;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cart-item-price {
    color: #94a3b8;
    font-size: 0.95rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #444;
    background: #2a2a2a;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    color: #e2e8f0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #333;
    border-color: #555;
}

.quantity-btn:active {
    transform: scale(0.95);
}

.cart-item-quantity span {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-item-total {
    font-size: 1.3rem;
    color: #ccc933;
    font-weight: 700;
    min-width: 100px;
    text-align: right;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.remove-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #444;
    background: #2a2a2a;
    color: #ff6b6b;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: #333;
    border-color: #ff6b6b;
    color: #ff8e8e;
}

.remove-btn:active {
    transform: scale(0.95) rotate(90deg);
}

.cart-summary {
    background: #222222;
    border: 1px solid #888282;
    border-radius: 8px;
    padding: 1.25rem;
    color: #e2e8f0;
    position: sticky;
    top: 100px;
    border: 2px solid #e9c731;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1rem;
    font-size: 1.05rem;
    background: rgb(39, 39, 39);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.summary-row span {
    font-weight: 600;
    color: #cbd5f5;
}

.summary-row strong {
    color: #d4af37;
    font-size: 1.7rem;
    font-weight: 800;
}

.shipping-box {
    background: #1b1b1b;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
}

.shipping-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.6rem;
    background: #0f0f0f;
    border: 1px solid #444;
    border-radius: 10px;
    color: #e2e8f0;
    padding: 0.65rem 0.75rem;
    cursor: pointer;
}

.shipping-toggle.open,
.shipping-toggle:hover {
    border-color: #d4af37;
}

.shipping-toggle-title {
    font-weight: 800;
    text-align: left;
}

.shipping-toggle-value {
    color: #cbd5f5;
    font-weight: 600;
    white-space: nowrap;
}

.shipping-toggle-arrow {
    color: #d4af37;
    font-weight: 900;
    transition: transform 0.2s ease;
}

.shipping-toggle.open .shipping-toggle-arrow {
    transform: rotate(180deg);
}

.shipping-panel {
    margin-top: 0.75rem;
}

.shipping-label {
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.shipping-select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #444;
    background: #0f0f0f;
    color: #e2e8f0;
    outline: none;
}

.shipping-select:focus {
    border-color: #d4af37;
}

.shipping-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.shipping-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    background: #0f0f0f;
    border: 1px solid #444;
    border-radius: 10px;
    color: #e2e8f0;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.shipping-option:hover {
    border-color: #d4af37;
    transform: translateY(-1px);
}

.shipping-option.active {
    border-color: #d4af37;
    background: rgba(100, 85, 0, 0.15);
}

.shipping-option-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

.shipping-option-text {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    width: 100%;
}

.shipping-option-name {
    font-weight: 700;
    text-align: left;
}

.shipping-option-price {
    color: #d4af37;
    font-weight: 800;
    white-space: nowrap;
}

.shipping-meta {
    margin-top: 0.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #cbd5f5;
    font-size: 0.95rem;
}

.shipping-meta strong {
color: #d4af37;
font-weight: 800;
}

.customer-box {
background: #1b1b1b;
border: 1px solid #333;
border-radius: 10px;
padding: 0.9rem 1rem;
margin-bottom: 1rem;
}

.customer-panel {
margin-bottom: 1rem;
}

.customer-title {
font-weight: 800;
color: #e2e8f0;
margin-bottom: 0.75rem;
}

.customer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.customer-box .form-group label {
    color: #cbd5f5;
}

.customer-box .form-group input {
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #444;
    background: #0f0f0f;
    color: #e2e8f0;
}

.customer-box .form-group input:focus {
    outline: none;
    border-color: #d4af37;
}

.customer-box .form-group input.input-error {
    border-color: #ff6b6b;
}

.checkout-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: linear-gradient(135deg, #e2d84a 0%, #f5d15b 100%);
    color: white;
    padding: 0.9rem 1.25rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(226, 216, 74, 0.3);
    border: none;
    cursor: pointer;
}

.checkout-button::after {
    content: '→';
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 211, 74, 0.637);
}

.checkout-button:hover::after {
    transform: translateX(5px);
}

.continue-shopping {
    display: block;
    text-align: center;
    color: #e2d84a;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.3s;
}

.continue-shopping:hover {
    color: #f5eb5b;
}

/* ==========================================================
   CHECKOUT
   ========================================================== */

/* Apmokėjimo stiliai */
.checkout-section {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.checkout-title {
    font-size: 2.5rem;
    color: #d4d25b;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.checkout-form-container {
    background: #1b1b1b;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    border: 1px solid #333;
}

.checkout-form-container h2 {
    font-size: 1.8rem;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

#accountSection .form-group label {
    font-weight: 600;
    color: #cbd5f5;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

#accountSection .form-group input {
    padding: 0.9rem 1rem;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #0f0f0f;
    color: #e2e8f0;
}

#accountSection .form-group input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
}

.checkout-section .form-group label {
    font-weight: 600;
    color: #cbd5f5;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.checkout-section .form-group input {
    padding: 0.9rem 1rem;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #0f0f0f;
    color: #e2e8f0;
}

.checkout-section .form-group select {
    padding: 0.9rem 1rem;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #0f0f0f;
    color: #e2e8f0;
}

.checkout-section .form-group input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
}

.checkout-section .form-group select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
}

.form-group input:hover {
    border-color: #cbd5e0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.submit-order-btn {
    background: linear-gradient(135deg, #b8ad0b 0%, #ccb429 100%);
    color: rgb(255, 255, 255);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(226, 185, 74, 0.3);
    margin-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.submit-order-btn::before {
    content: '✓';
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.submit-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 185, 74, 0.4);
}

.submit-order-btn:hover::before {
    transform: scale(1.3) rotate(360deg);
}

.submit-order-btn:active {
    transform: translateY(0);
}

.checkout-summary {
    background: #1b1b1b;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    position: sticky;
    top: 100px;
    height: fit-content;
    border: 1px solid #333;
}

.checkout-summary h2 {
    font-size: 1.8rem;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.checkout-items {
    margin-bottom: 1.5rem;
}

.checkout-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

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

.checkout-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #333;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-info h4 {
    font-size: 0.95rem;
    color: #e2e8f0;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.checkout-item-info p {
    font-size: 0.85rem;
    color: #cbd5f5;
}

.checkout-item-total {
    font-weight: 700;
    color: #f1efef;
    align-self: center;
    font-size: 1.1rem;
}

.checkout-total {
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.checkout-total .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    color: #cbd5f5;
    font-size: 0.98rem;
}

 .checkout-total .total-row span {
     color: #cbd5f5;
 }

.checkout-total .total-row strong {
    color: #d4af37;
    font-weight: 800;
    font-size: 1.05rem;
}

.checkout-total .total-row.shipping-fee strong {
    font-size: 0.98rem;
}

.checkout-total .total-row.grand-total strong {
    font-size: 2.1rem;
    line-height: 1.1;
}

.checkout-total .total-row.grand-total span {
     font-weight: 700;
 }

 .checkout-total .total-row.shipping-fee {
     padding-top: 0.25rem;
 }

 .checkout-form-container .shipping-options {
     margin-top: 0.75rem;
 }

.total-row span {
    font-weight: 600;
    color: #4a5568;
}

.total-row strong {
    color: #4a90e2;
    font-size: 2.2rem;
    font-weight: 700;
}

.back-to-cart {
    display: block;
    text-align: center;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    margin-top: 1rem;
    transition: color 0.3s;
}

.back-to-cart:hover {
    color: #5ba3f5;
}

/* ==========================================================
   NOTIFICATION
   ========================================================== */

/* Pranešimų stiliai */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #e2d34a 0%, #f5de5b 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateX(400px);
    transition: opacity 0.3s, transform 0.3s;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .header .container {
        gap: 0.5rem;
        align-items: center;
    }

    .nav {
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    /* Slightly larger top space for fixed header on small screens */
    main {
        padding: 130px 0 48px;
    }
}

/* ==========================================================
   SUPPORT WIDGET
   ========================================================== */

.support-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: radial-gradient(120% 120% at 30% 25%, rgba(212, 175, 55, 0.25) 0%, rgba(18, 18, 18, 0.95) 55%, rgba(10, 10, 10, 0.98) 100%);
    color: #d4af37;
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
    z-index: 1400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: 0.2px;
}

.support-fab {
    position: fixed;
}

.support-fab-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.65);
    background: #0b0b0b;
    color: #d4af37;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

.support-fab:hover {
    border-color: rgba(212, 175, 55, 0.65);
    transform: translateY(-1px);
}

.support-panel {
    position: fixed;
    right: 18px;
    bottom: 86px;
    width: 360px;
    max-width: calc(100vw - 36px);
    max-height: calc(100vh - 140px);
    border-radius: 14px;
    border: 1px solid #2a2a2a;
    background: #0f0f0f;
    box-shadow: 0 18px 50px rgba(0,0,0,0.55);
    z-index: 1400;
    overflow: hidden;
    display: none;
}

.support-panel[data-open="1"] {
    display: flex;
    flex-direction: column;
}

.support-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.8rem 0.95rem;
    border-bottom: 1px solid #1f1f1f;
    background: #121212;
}

.support-panel-title {
    color: #e2e8f0;
    font-weight: 900;
    font-size: 0.95rem;
}

.support-panel-close {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #333;
    background: transparent;
    color: #d4af37;
    cursor: pointer;
    font-weight: 900;
}

.support-panel-close:hover {
    border-color: #d4af37;
}

.support-panel-body {
    padding: 0.85rem 0.95rem;
    overflow: auto;
}

.support-hint {
    margin: -0.25rem 0 0.65rem;
    color: #cbd5f5;
    font-size: 0.85rem;
    opacity: 0.9;
}

.support-kicker {
    color: #cbd5f5;
    font-size: 0.9rem;
    opacity: 0.95;
    margin-bottom: 0.65rem;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.support-form input,
.support-form textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid #333;
    border-radius: 10px;
    background: #0b0b0b;
    color: #e2e8f0;
    outline: none;
}

.support-form input:focus,
.support-form textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.support-form textarea {
    min-height: 88px;
    resize: none;
}

.support-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.support-btn {
    border: 1px solid rgba(212, 175, 55, 0.6);
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    border-radius: 10px;
    padding: 0.55rem 0.9rem;
    cursor: pointer;
    font-weight: 900;
}

.support-btn:hover {
    background: rgba(212, 175, 55, 0.18);
}

.support-link {
    border: none;
    background: transparent;
    color: #cbd5f5;
    cursor: pointer;
    font-weight: 800;
    text-decoration: underline;
    padding: 0;
}

.support-ticket-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.support-ticket-item {
    border: 1px solid #2a2a2a;
    background: #121212;
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    cursor: pointer;
}

.support-ticket-item:hover {
    border-color: #444;
    background: #171717;
}

.support-ticket-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
}

.support-ticket-id {
    color: #e2e8f0;
    font-weight: 900;
}

.support-ticket-status {
    color: #d4af37;
    font-weight: 900;
    font-size: 0.85rem;
}

.support-ticket-meta {
    margin-top: 0.3rem;
    color: #cbd5f5;
    font-size: 0.85rem;
    opacity: 0.9;
    overflow-wrap: anywhere;
}

.support-thread {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 0.75rem;
}

.support-msg {
    max-width: 92%;
    border: 1px solid #2a2a2a;
    background: #0b0b0b;
    border-radius: 12px;
    padding: 0.6rem 0.75rem;
    color: #e2e8f0;
    font-size: 0.92rem;
    line-height: 1.45;
}

.support-msg[data-sender="customer"] {
    align-self: flex-end;
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.08);
}

.support-msg-meta {
    margin-top: 0.25rem;
    color: #cbd5f5;
    font-size: 0.75rem;
    opacity: 0.8;
}

.support-confirm {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.62);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 18px;
}

.support-confirm[data-open="1"] {
    display: flex;
}

.support-confirm-card {
    width: 420px;
    max-width: 100%;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    background: #111111;
    box-shadow: 0 14px 34px rgba(0,0,0,0.45);
    padding: 1.05rem 1.05rem 0.95rem;
}

.support-confirm-title {
    color: #e2e8f0;
    font-weight: 900;
    font-size: 1.05rem;
}

.support-confirm-text {
    margin-top: 0.55rem;
    color: #cbd5f5;
    font-size: 0.9rem;
    line-height: 1.55;
    opacity: 0.95;
}

.support-confirm-actions {
    margin-top: 0.95rem;
    display: flex;
    gap: 0.6rem;
    justify-content: flex-end;
}

.support-confirm-cancel {
    border: 1px solid #2a2a2a;
    background: #0b0b0b;
    color: #cbd5f5;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
}

.support-confirm-cancel:hover {
    border-color: #444;
    background: #0f0f0f;
}

.support-confirm-ok {
    border: 1px solid rgba(212, 175, 55, 0.6);
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 900;
}

.support-confirm-ok:hover {
    background: rgba(212, 175, 55, 0.18);
}

@media (max-width: 480px) {
    .support-panel {
        right: 12px;
        left: 12px;
        width: auto;
    }
    .support-fab {
        right: 12px;
        bottom: 12px;
    }
}