/* Reset a základné štýly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}
body::before { content:""; position:fixed; inset:-15% -10% auto -10%; height:60vh; pointer-events:none; background: radial-gradient(520px at 25% 20%, rgba(99,102,241,.22), transparent 60%), radial-gradient(520px at 70% 10%, rgba(147,51,234,.18), transparent 62%), radial-gradient(600px at 50% 85%, rgba(14,165,233,.14), transparent 60%); filter: blur(40px); z-index:-1; }

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

/* Hero vyladenie */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    backdrop-filter: blur(6px);
}

/* Sekčné karty – jednotné pozadie a rohy */
.section-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  margin: 24px 0 36px 0; /* horná medzera */
  padding: 40px 32px;
}

/* Hero brand */
.brand { 
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px; 
}
.brand-name { 
  font-size: 2.2rem; font-weight: 700; 
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
/* Skryté brand bloky v hero */
.brand, .brand-mark { display:none; }

.brand-mark:hover svg, .brand-mark:hover img {
  transform: scale(1.05);
}

/* Uprav hlavičku */
.header { display:none; }

/* Upload karta – dedí zo section-card cez rodiča main */
main.section-card { padding-top: 28px; padding-bottom: 28px; }
.upload-area { border: 2px dashed #667eea; border-radius: 16px; padding: 44px 30px; }

/* Upload Section */
.upload-section {
    padding: 1px 24px 1%;
}

.upload-container {
    max-width: 1100px;
    margin: 0 auto;
}

.inline-logo { text-align:center; margin: 40px 0 40px 0px; position: relative; }
.inline-logo img { max-width: min(90vw, 420px); width: 100%; height:auto; display:inline-block; box-shadow:none; border-radius:12px; margin: 0; position: relative; z-index:1; }
.inline-logo::after { content:""; position:absolute; left:50%; top:60%; transform:translate(-50%,-50%); width: min(85vw, 460px); height: 80px; background: linear-gradient(90deg, rgba(99,102,241,.28), rgba(124,58,237,.22)); border-radius: 999px; filter: blur(22px); z-index:0; }

.upload-area {
    border: none;
    border-radius: 22px;
    padding: 20px 36px;
    text-align: center;
    background: #ffffff;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}

.upload-area:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(16, 24, 40, 0.12);
}

.upload-area.dragover {
    background: #fcfdff;
    transform: scale(1.01);
}

.upload-content {
    max-width: 400px;
    margin: 0 auto;
}

.upload-icon {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.upload-content h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: #1f2937;
    font-weight: 700;
}

.upload-content p {
    color: #6b7280;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.upload-btn {
    background: linear-gradient(135deg, #6366f1, #7c3aed);
    color: white;
    border: none;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.3);
}

.upload-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(99, 102, 241, 0.35);
}

/* Preview Section */
.preview-section {
    padding: 40px;
    border-top: 1px solid #e0e0e0;
}

.preview-container {
    max-width: 1000px;
    margin: 0 auto;
}

.image-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

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

.image-container h4 {
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

/* Konzistentné obrázky v náhľade */
.image-wrapper { position:relative; border-radius: 14px; overflow:hidden; box-shadow: 0 10px 30px rgba(0,0,0,.1); background:#f8f9fa; min-height:300px; display:flex; align-items:center; justify-content:center; }
.image-wrapper img { 
    max-width:100%; 
    max-height:420px; 
    object-fit:contain; 
    border-radius: 12px; 
    transform: none !important; /* Zabráni otáčaniu */
    image-orientation: from-image; /* Respektuje EXIF orientáciu */
    /* Opraviť otáčanie fotiek */
    transform: rotate(0deg) !important;
    -webkit-transform: rotate(0deg) !important;
    -moz-transform: rotate(0deg) !important;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Controls */
.controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.3);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 54px 32px;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
    border-top: 1px solid rgba(0,0,0,0.06);
}

.features-wrapper.section-card { padding-top: 36px; padding-bottom: 36px; }
.features-wrapper h2 { text-align:center; margin-bottom: 24px; color:#333; }

/* Features grid 3x na desktop, auto-fit */
.features-grid {
    display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 992px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card { background:#fff; padding: 24px; border-radius: 14px; text-align:center; box-shadow: 0 8px 24px rgba(0,0,0,.08); transition: transform .25s, box-shadow .25s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,.12); }
.feature-icon { width:68px; height:68px; background: linear-gradient(45deg, #667eea, #764ba2); border-radius: 50%; display:flex; align-items:center; justify-content:center; margin: 0 auto 14px; }
.feature-icon i { color:#fff; font-size:1.6rem; }

.feature-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    color: white;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 36px 0 22px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .upload-section {
        padding: 40px 20px;
    }
    
    .upload-area {
        padding: 40px 20px;
    }
    
    .image-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .preview-section {
        padding: 30px 20px;
    }
    
    .controls {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .features-section {
        padding: 40px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .upload-icon {
        font-size: 3rem;
    }
    
    .upload-content h3 {
        font-size: 1.2rem;
    }
}

/* Fix pre jednoduchý layout v indexe: zabrániť roztiahnutiu obrázkov */
.image-preview {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    min-height: 320px;
    padding: 15px;
}

.image-preview h3 {
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.image-preview img {
    display: block;
    max-width: 100%;
    max-height: 420px;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 12px;
}

/* Uisti sa, že overlay sa viaže na kontajner */
.image-preview .loading-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Before/After demo */
.demo-section { padding: 28px 24px; }
.demo-title { text-align:center; margin-bottom: 18px; color:#333; }
.ba-container { position:relative; max-width: 920px; margin: 0 auto; border-radius: 10px; overflow:hidden; aspect-ratio: 4 / 3; }
.ba-img { position:absolute; inset:0; width:100%; height:100%; object-fit: contain; object-position: center; display:block; user-select:none; pointer-events:none; }
.ba-before { filter: grayscale(100%); -webkit-filter: grayscale(100%); background:#111; }
.ba-after { position:absolute; inset:0; overflow:hidden; z-index:1; }
.ba-after { position:absolute; inset:0; z-index:2; overflow:hidden; clip-path: inset(0 50% 0 0); transition: clip-path .12s ease-out; }
.ba-after .ba-img { position:absolute; inset:0; width:100%; height:100%; object-fit: contain; }
.ba-slider { position:absolute; left:0; right:0; bottom:8px; width:60%; margin: 0 auto; display:block; appearance:none; height:2px; background: transparent; outline:none; opacity:0; pointer-events:none; }
.ba-slider::-webkit-slider-thumb { appearance:none; width:18px; height:18px; border-radius:50%; background:#667eea; border:2px solid #fff; box-shadow: 0 0 0 2px rgba(102,126,234,.25); cursor:ew-resize; }
.ba-slider::-moz-range-thumb { width:18px; height:18px; border-radius:50%; background:#667eea; border:2px solid #fff; box-shadow: 0 0 0 2px rgba(102,126,234,.25); cursor:ew-resize; }
.ba-handle { position:absolute; top:0; bottom:0; left:50%; width:2px; background: rgba(255,255,255,.85); transform: translateX(-1px); display:flex; align-items:center; justify-content:center; }
.ba-handle::before { content:""; width:28px; height:14px; border-radius:999px; background:#ffffff; border:1px solid rgba(99,102,241,.7); box-shadow: 0 2px 10px rgba(0,0,0,.25); }
.ba-dot { display:none; }
.ba-label { display:none; }

/* Demos grid */
.demos { padding: 0 24px 8px 24px; margin-top: 8px; margin-bottom: 24px; }
.demos .demo-title { text-align:center; margin: 6px 0 12px; color:#333; }
.demos-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.demo-card { }
@media (max-width: 900px){ .demos-grid{ grid-template-columns: 1fr; } }

/* BA unified režim cez background */
.ba-unified { --ba-image: none; }
.ba-unified .ba-img { display: none; }
.ba-unified::before { content:""; position:absolute; inset:0; background: var(--ba-image) center / contain no-repeat; filter: grayscale(100%); }
.ba-unified .ba-after::before { content:""; position:absolute; inset:0; background: var(--ba-image) center / contain no-repeat; filter: none; }

/* Credits panel */
.credits-header {
    text-align: center;
    margin-bottom: 30px;
}

.credits-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.credits-info i {
    font-size: 20px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.pricing-card.recommended {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}

.pricing-card.best-value {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 6px 16px;
    border-radius: 0 0 12px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card.premium {
    border-color: #6f42c1;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.pricing-card.premium .badge {
    background: #6f42c1;
}

.pricing-card.custom {
    border-color: #17a2b8;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card.custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #17a2b8;
}

.pricing-card.custom .qty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.custom-input-container {
    padding: 8px 0;
    margin: 8px 0;
}

.custom-qty-input {
    border: 2px solid #e5e7eb;
    background: white;
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    width: 60px;
    outline: none;
    padding: 6px 8px;
    margin: 0;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.custom-qty-input:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.custom-qty-input::placeholder {
    font-size: 10px;
    color: rgb(138, 138, 138);
    font-weight: 400;
  


}

.custom-unit {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

#customQty {
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 16px;
    font-weight: 600;
}

#customQty:focus {
    border-color: #8b5cf6;
    outline: none;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.1);
}

#customQty::placeholder {
    font-size: 10px;
    color: rgb(192, 192, 192);
    font-weight: 400;
}

#customPriceAmount {
    color: #667eea;
}

.best-value .badge {
    background: #f59e0b;
}

/* Digitalizačné súmar sekcia */
.digi-summary-section {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    border: 2px solid #cbd5e1;
}

.digi-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.summary-options h3,
.summary-display h3 {
    margin: 0 0 24px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    font-weight: 500;
    color: #475569;
    margin-bottom: 8px;
}

.dpi-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #cbd5e1;
    border-radius: 12px;
    background: white;
    font-size: 1rem;
    cursor: pointer;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    transition: background-color 0.2s;
}

.checkbox-label:hover {
    background: #f1f5f9;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.summary-display {
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-divider {
    margin: 16px 0;
    border: none;
    border-top: 2px solid #e2e8f0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    padding: 16px 0;
}

.buy-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.buy-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.buy-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.buy-btn .btn-total {
    display: inline-block;
    background: rgba(255,255,255,.15);
    padding: 6px 10px;
    margin-left: 10px;
    border-radius: 999px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .digi-summary-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Digitalizačné karty - odlišná farba */
.pricing-card.digi-card {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
}

.pricing-card.digi-card.recommended {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.pricing-card.digi-card.best-value {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.pricing-card.digi-card.premium {
    border-color: #6366f1;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
}

.pricing-card.digi-card.custom {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
}

/* Označenie vybranej karty */
.pricing-card.digi-card.selected {
    border-color: #0284c7 !important;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd) !important;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.25) !important;
}

/* Heritage section - emotívna sekcia */
.heritage-section {
    margin: 30px 0 40px 0;
    padding: 32px;
    background: linear-gradient(135deg, #fef7cd, #fef3c7);
    border: 2px solid #f59e0b;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: center;
}

.heritage-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 16px;
    text-align: center;
}

.heritage-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #451a03;
    margin-bottom: 12px;
}

.heritage-text strong {
    color: #dc2626;
    font-weight: 600;
}

.heritage-cta {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #7c2d12;
    margin-top: 20px !important;
    padding: 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid #f59e0b;
}

.heritage-image {
    position: relative;
    text-align: center;
}

.heritage-photo {
    width: 100%;
    max-width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 4px solid #fff;
    transition: transform 0.3s ease;
}

.heritage-photo:hover {
    transform: scale(1.05);
}

.heritage-overlay {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7c2d12, #92400e);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

/* Digitalizácia súmar sekcia */
.digi-summary-section {
    margin: 30px 0;
    padding: 24px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #0284c7;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.15);
}

.digi-summary-section h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 24px;
}

.digi-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.summary-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-group label:not(.checkbox-label) {
    display: block;
    font-weight: 600;
    color: #0c4a6e;
    margin-bottom: 8px;
}

.option-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #0284c7;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    color: #0c4a6e;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.2s;
    font-weight: 500;
    color: #0c4a6e;
}

.checkbox-label:hover {
    background: rgba(2, 132, 199, 0.1);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0284c7;
}

.summary-display {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #0284c7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    color: #475569;
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 16px 0;
    font-size: 20px;
    font-weight: 700;
    color: #0c4a6e;
    border-top: 2px solid #0284c7;
    margin-top: 12px;
}



/* Responsive */
@media (max-width: 768px) {
    .heritage-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .heritage-photo {
        max-width: 240px;
        height: 160px;
    }
    
    .heritage-text h3 {
        font-size: 20px;
    }
    
    .digi-summary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.pricing-header {
    margin: 20px 0 16px 0;
}

.qty {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
}

.price-per {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.discount {
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    background: #f9fafb;
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    margin: 0;
}

.pricing-note i {
    color: #667eea;
    margin-right: 8px;
}

/* Digitalizácia fotiek */
.digi-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap:24px; align-items:start; }
@media (max-width: 900px){ .digi-grid { grid-template-columns: 1fr; } }
.digi-form .form-row { margin-bottom: 14px; }
.digi-form label { display:block; font-weight:600; margin-bottom:6px; color:#333; }
.digi-form input[type="number"], .digi-form select { width:100%; padding:10px 12px; border:1px solid #e2e2e2; border-radius:10px; }
.digi-form .inline { display:flex; gap:16px; align-items:center; flex-wrap:wrap; }
.digi-form .checkbox { font-weight:500; }
.digi-summary { background:#fff; border:1px solid #eee; border-radius:14px; padding:16px; box-shadow:0 6px 18px rgba(0,0,0,.06); }
.digi-summary h3 { margin-bottom:8px; color:#333; }
.digi-breakdown { list-style:none; padding:0; margin:0 0 10px 0; }
.digi-breakdown li { display:flex; justify-content:space-between; padding:6px 0; border-bottom:1px dashed #eee; }
.digi-total { font-size:1.2rem; margin-top:8px; }

/* Digitalizácia fotiek – doladenie vzhľadu */
#digitization h2 { text-align: center; margin-bottom: 10px; }
#digitization > p { text-align: center; max-width: 760px; margin: 6px auto 22px; color: #555; }
#digitization .digi-summary { border: 1px solid #eaeaea; box-shadow: 0 12px 28px rgba(0,0,0,.08); }
#digitization .digi-form input[type="number"],
#digitization .digi-form select { background: #fafbff; border-color: #e6e8ff; }
#digitization .digi-form .checkbox input { margin-right: 6px; }
#digitization .btn.btn-primary { padding: 12px 20px; }

/* Fancy toggle for colorize addon */
.toggle { position: relative; width: 56px; height: 32px; display:inline-block; }
.toggle input { display:none; }
.toggle .slider { position:absolute; inset:0; background:#e5e7eb; border-radius:999px; transition:.25s; box-shadow: inset 0 2px 6px rgba(0,0,0,.15); }
.toggle .slider::before { content:""; position:absolute; left:4px; top:4px; width:24px; height:24px; border-radius:50%; background:#fff; transition:.25s; box-shadow: 0 4px 10px rgba(0,0,0,.15); }
.toggle input:checked + .slider { background: linear-gradient(45deg, #10b981, #22c55e); }
.toggle input:checked + .slider::before { transform: translateX(24px); }











