/* ============================================
   LOGO STICKERS - PAGE STYLES
   ============================================ */

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.stickers-hero {
    background: linear-gradient(135deg, #1E3A5F 0%, #0d1f33 100%);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.hero-text { 
    color: #fff;
    animation: fadeInRight 0.8s ease-out;
    padding: 40px 30px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 15px;
}

.hero-text h1 span { color: #FFC857; }

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
    overflow: hidden;
    min-height: 400px;
}

.hero-image-wrapper img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255,200,87,0.15);
    border: 1px solid rgba(255,200,87,0.3);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #FFC857;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.6s ease-out both;
}

.hero-badge:nth-child(1) { animation-delay: 0.4s; }
.hero-badge:nth-child(2) { animation-delay: 0.5s; }
.hero-badge:nth-child(3) { animation-delay: 0.6s; }

/* ============================================
   CONFIGURATOR SECTION
   ============================================ */
.sticker-config-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.sticker-config-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sticker-config-title {
    text-align: center;
    font-size: 1.8rem;
    color: #1E3A5F;
    margin-bottom: 10px;
    font-weight: 700;
}

.sticker-config-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #DA1A32, #FFC857);
    margin: 15px auto 0;
    border-radius: 2px;
}

.sticker-config-subtitle {
    text-align: center;
    color: #666;
    margin: 20px auto;
    font-size: 1.05rem;
	max-width: 600px;
}

.sticker-config-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* ============================================
   PREVIEW AREA
   ============================================ */
.sticker-preview-area {
    background: transparent;
    padding: 0;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hidden SVG defs */
.svg-clip-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ============================================
   UPLOAD DROPZONE
   ============================================ */
.upload-dropzone {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border: 3px dashed #DA1A32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.5);
    position: relative;
}

.upload-dropzone:hover {
    border-color: #1E3A5F;
    background: rgba(255,255,255,0.8);
}

.upload-dropzone.dragover {
    border-color: #1E3A5F;
    background: rgba(30,58,95,0.1);
    transform: scale(1.02);
}

.upload-dropzone.hidden { display: none; }

.dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    pointer-events: none;
    max-width: 85%;
}

.dropzone-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #DA1A32 0%, #b81528 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.dropzone-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.dropzone-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.dropzone-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1E3A5F;
}

.dropzone-subtitle {
    font-size: 0.8rem;
    color: #666;
}

.dropzone-formats {
    display: flex;
    gap: 5px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.format-badge {
    padding: 3px 8px;
    background: #fff;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #555;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.dropzone-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, #DA1A32 0%, #b81528 100%);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    pointer-events: auto;
}

.dropzone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218,26,50,0.35);
}

.upload-dropzone input[type="file"] { display: none; }

/* ============================================
   PREVIEW ZONE
   ============================================ */
.preview-zone {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.preview-zone.visible { display: flex; }

.preview-canvas-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    background: transparent;
    overflow: hidden;
}

/* Fabric.js .canvas-container — обидва canvas position:absolute,
   тому потрібен aspect-ratio щоб контейнер не колапсував до 0px */
.preview-canvas-wrapper .canvas-container {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    position: relative !important;
}

.preview-canvas-wrapper .canvas-container canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* ============================================
   PREVIEW CONTROLS
   ============================================ */
.preview-controls {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.preview-control-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.preview-control-btn:hover {
    border-color: #DA1A32;
    background: #fff5f6;
}

.preview-control-btn svg {
    width: 18px;
    height: 18px;
    fill: #333;
}

.preview-control-btn:hover svg { fill: #DA1A32; }

/* Legend */
.preview-legend {
    display: flex;
    gap: 16px;
    justify-content: center;
    font-size: 0.75rem;
    color: #666;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-line {
    width: 32px;
    height: 2px;
}

.legend-line.solid { background: #DA1A32; }
.legend-line.dashed {
    background: repeating-linear-gradient(90deg, #B5B5B5 0px, #B5B5B5 8px, transparent 8px, transparent 12px);
}

/* Change file button */
.change-file-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #DA1A32;
    border-radius: 20px;
    color: #DA1A32;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.change-file-btn:hover {
    background: #DA1A32;
    color: #fff;
}

.change-file-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================================
   PARAMETERS - COMPACT
   ============================================ */
.sticker-params-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.param-group {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.param-group-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.param-group-title::before {
    content: '';
    width: 3px;
    height: 16px;
    background: linear-gradient(180deg, #DA1A32, #FFC857);
    border-radius: 2px;
}

/* ============================================
   CUT SHAPES
   ============================================ */
.cut-shapes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.cut-shape-btn {
    aspect-ratio: 1;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    padding: 6px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.cut-shape-btn:hover {
    border-color: #3AAFD9;
    transform: translateY(-2px);
}

.cut-shape-btn.active {
    border-color: #DA1A32;
    background: rgba(218,26,50,0.05);
}

.cut-shape-btn svg {
    width: 52px;
    height: 52px;
}

.cut-shape-btn .shape-name {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.cut-shape-btn.active .shape-name {
    color: #DA1A32;
    font-weight: 600;
}

/* ============================================
   SIZE - COMPACT INLINE
   ============================================ */
.size-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.size-row label {
    font-size: 0.85rem;
    color: #666;
}

.size-row input {
    width: 65px;
    padding: 8px 10px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: #1E3A5F;
    text-align: center;
}

.size-row input:focus {
    outline: none;
    border-color: #3AAFD9;
}

.size-separator {
    font-size: 1.1rem;
    color: #999;
}

.size-height {
    font-size: 1rem;
    font-weight: 600;
    color: #1E3A5F;
}

.size-note {
    font-size: 0.7rem;
    color: #999;
    margin-top: 6px;
}

.size-error {
    display: none;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: #c0392b;
    background: #fff0ef;
    border: 1px solid #f5c6c2;
    border-radius: 7px;
    padding: 7px 12px;
    margin-top: 8px;
    line-height: 1.4;
}

.size-error::before {
    content: '⚠';
    font-size: 1rem;
    flex-shrink: 0;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}

.size-error.shake {
    animation: shake 0.45s ease;
}

/* ============================================
   QUANTITY - COMPACT INLINE
   ============================================ */
.qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.qty-row label {
    font-size: 0.85rem;
    color: #666;
}

.qty-row input {
    width: 90px;
    padding: 8px 10px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: #1E3A5F;
    text-align: center;
}

.qty-row input:focus {
    outline: none;
    border-color: #3AAFD9;
}

.quick-qty-btns {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.quick-qty-btn {
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    font-size: 0.75rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-qty-btn:hover {
    border-color: #3AAFD9;
    color: #3AAFD9;
}

.quick-qty-btn.active {
    background: #DA1A32;
    border-color: #DA1A32;
    color: #fff;
}

/* ============================================
   MATERIAL - COMPACT
   ============================================ */
.material-options {
    display: flex;
    gap: 8px;
}

.material-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.material-option:hover { border-color: #3AAFD9; }

.material-option.active {
    border-color: #DA1A32;
    background: rgba(218,26,50,0.03);
}

.material-option input[type="radio"] { display: none; }

.material-radio {
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.material-option.active .material-radio { border-color: #DA1A32; }

.material-option.active .material-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #DA1A32;
    border-radius: 50%;
}

.material-info .material-name {
    font-weight: 600;
    color: #1E3A5F;
    font-size: 0.85rem;
}

.material-info .material-desc {
    font-size: 0.7rem;
    color: #888;
}

/* ============================================
   URGENCY - COMPACT
   ============================================ */
.urgency-options {
    display: flex;
    gap: 6px;
}

.urgency-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 8px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.urgency-option:hover { border-color: #3AAFD9; }

.urgency-option.active {
    border-color: #DA1A32;
    background: rgba(218,26,50,0.03);
}

.urgency-option input[type="radio"] { display: none; }

.urgency-option .urgency-name {
    font-weight: 600;
    color: #333;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.urgency-option .urgency-price {
    font-weight: 700;
    color: #1E3A5F;
    font-size: 0.85rem;
}

.urgency-option.active .urgency-name,
.urgency-option.active .urgency-price {
    color: #DA1A32;
}

/* ============================================
   PRICE RESULT
   ============================================ */
.price-result-block {
    background: linear-gradient(135deg, #1E3A5F 0%, #0d1f33 100%);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    text-align: center;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #FFC857;
}

.price-per-item {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.order-summary {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    display: inline-block;
}

.order-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #DA1A32 0%, #b81528 100%);
    border: none;
    border-radius: 20px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
}

.order-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(218, 26, 50, 0.4);
}

.order-btn-primary svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-text { padding: 40px 25px; text-align: center; }
    .hero-badges { justify-content: center; }
    .hero-image-wrapper { min-height: 280px; }
    .sticker-config-grid { grid-template-columns: 1fr; }
    .sticker-preview-area { position: static; order: -1; }
}

@media (max-width: 600px) {
    .stickers-hero { min-height: auto; }
    .hero-text { padding: 30px 20px; }
    .hero-image-wrapper { min-height: 220px; }
    .sticker-config-section { padding: 30px 10px; }
    .sticker-config-title { font-size: 1.4rem; }
    
.upload-dropzone { max-width: 280px; }
    .preview-canvas-wrapper { max-width: 280px; }
    
    .urgency-options { flex-wrap: wrap; }
    .urgency-option { flex: 1 1 30%; }
    
    .price-value { font-size: 1.7rem; }
    .param-group { padding: 12px; }
}

@media (max-width: 400px) {
    .upload-dropzone { max-width: 240px; }
    .preview-canvas-wrapper { max-width: 240px; }
    .dropzone-subtitle { display: none; }
}

/* ============================================
   FAQ & SEO
   ============================================ */
.faq-section, .seo-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.seo-section a.print-link {
    color: #DA1A32;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(218, 26, 50, 0.25);
}

.seo-section a.print-link:hover {
    color: #1E3A5F;
}

/* ============================================
   ORDER FORM SECTION
   ============================================ */
.order-form-section {
    animation: fadeInUp 0.4s ease-out;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.delivery-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delivery-option:hover {
    border-color: #3AAFD9;
}

.delivery-option.active {
    border-color: #DA1A32;
    background: rgba(218,26,50,0.03);
}

.delivery-option input[type="radio"] {
    display: none;
}

.delivery-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.delivery-option.active .delivery-radio {
    border-color: #DA1A32;
}

.delivery-option.active .delivery-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #DA1A32;
    border-radius: 50%;
}

.delivery-info {
    flex: 1;
}

.delivery-name {
    font-weight: 600;
    color: #1E3A5F;
    margin-bottom: 4px;
}

.delivery-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
}

.delivery-price {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* ============================================
   ORDER FORM STYLES
   ============================================ */
.pickup-form,
.novaposhta-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.np-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-full {
    width: 100%;
}

.form-group label {
    font-size: 0.9rem;
    color: #1E3A5F;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3AAFD9;
    box-shadow: 0 0 0 3px rgba(58, 175, 217, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.input-hint {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

/* Nova Poshta specific */
.np-form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.np-form-group label {
    font-size: 0.9rem;
    color: #1E3A5F;
    font-weight: 600;
}

.np-form-group input {
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
}

.np-form-group input:focus {
    outline: none;
    border-color: #3AAFD9;
    box-shadow: 0 0 0 3px rgba(58, 175, 217, 0.1);
}

.np-form-group input:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
    color: #999;
}

.np-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.np-suggestions.active {
    display: block;
}

.np-suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.np-suggestion-item:last-child {
    border-bottom: none;
}

.np-suggestion-item:hover {
    background: #f0f7ff;
}

.np-tabs {
    display: flex;
    gap: 10px;
}

.np-tab {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: #555;
}

.np-tab:hover {
    border-color: #3AAFD9;
    color: #3AAFD9;
}

.np-tab.active {
    border-color: #DA1A32;
    background: rgba(218,26,50,0.05);
    color: #DA1A32;
}

.np-selected-warehouse {
    display: none;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: #e8f5e9;
    border-radius: 8px;
    border: 1px solid #c8e6c9;
}

.np-selected-warehouse.active {
    display: flex;
}

.np-selected-warehouse svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.np-selected-warehouse span {
    font-size: 0.95rem;
    color: #2e7d32;
    line-height: 1.5;
}

.confirm-order-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #DA1A32 0%, #b81528 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.confirm-order-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(218,26,50,0.3);
}

.confirm-order-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ============================================
   FIELD VALIDATION ERROR
   ============================================ */
.field-error {
    border-color: #DA1A32 !important;
    background-color: #fff5f6 !important;
    box-shadow: 0 0 0 3px rgba(218, 26, 50, 0.15) !important;
    animation: fieldShake 0.35s ease;
}

@keyframes fieldShake {
    0%, 100% { transform: translateX(0); }
    25%       { transform: translateX(-4px); }
    75%       { transform: translateX(4px); }
}

/* ============================================
   BUTTON HINT — показує незаповнені поля
   ============================================ */
.confirm-order-hint {
    display: none;
    margin-top: 8px;
    padding: 9px 14px;
    background: #fff5f6;
    border: 1px solid #f5c0c7;
    border-radius: 8px;
    color: #b81528;
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.4;
}

/* ============================================
   ORDER CONFIRMATION OVERLAY
   ============================================ */
.order-confirmation-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 28, 50, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.order-confirmation-overlay.visible {
    opacity: 1;
}

.order-confirmation-modal {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    max-width: 460px;
    width: 100%;
    padding: 44px 36px 36px;
    text-align: center;
    transform: translateY(24px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.order-confirmation-overlay.visible .order-confirmation-modal {
    transform: translateY(0);
}

.order-confirmation-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #7AB72B, #5a9a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(122, 183, 43, 0.4);
}

.order-confirmation-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E3A5F;
    margin: 0 0 12px;
}

.order-confirmation-number {
    font-size: 1rem;
    color: #444;
    margin: 0 0 16px;
}
.order-confirmation-number strong {
    color: #DA1A32;
    font-size: 1.1rem;
}

.order-confirmation-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 28px;
}

.order-pay-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #7AB72B, #5a9a1a);
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 16px;
}
.order-pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(122, 183, 43, 0.4);
}

.order-confirmation-note {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   DROPZONE — REQUIRED HINT & ERROR STATE
   ============================================ */
.dropzone-required-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.82rem;
    color: #7a8a9a;
    transition: color 0.2s ease;
}

.dropzone-required-hint.dropzone-hint-error {
    color: #DA1A32;
    font-weight: 600;
}

.dropzone-error {
    border: 2px solid #DA1A32 !important;
    background-color: #fff5f6 !important;
    box-shadow: 0 0 0 4px rgba(218, 26, 50, 0.12) !important;
}

/* ============================================
   PAYMENT TRUST BLOCK
   ============================================ */
.payment-trust-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    padding: 10px 14px;
    background: #f7f9fb;
    border: 1px solid #e4eaf0;
    border-radius: 10px;
    flex-wrap: wrap;
}

.trust-secure {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.trust-lock {
    font-size: 0.9rem;
}

.trust-text {
    font-size: 0.78rem;
    color: #4a5a6a;
    font-weight: 500;
}

.trust-brands {
    display: flex;
    align-items: center;
    gap: 4px;
}

.trust-brand {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.03em;
}

.trust-brand.liqpay {
    background: #1E3A5F;
    color: #fff;
}

.trust-brand.visa {
    background: #1a1f71;
    color: #fff;
}

.trust-brand.mc {
    background: #eb001b;
    color: #fff;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.trust-stars {
    color: #f5a623;
    font-size: 0.78rem;
    letter-spacing: -1px;
}

.trust-score {
    font-size: 0.8rem;
    font-weight: 700;
    color: #2a3a4a;
}

.trust-reviews {
    font-size: 0.75rem;
    color: #7a8a9a;
}

@media (max-width: 480px) {
    .payment-trust-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
.email-hint {
    display: block;
    margin-top: 4px;
    font-size: 0.78rem;
    color: #7a8a9a;
    line-height: 1.3;
}

/* ============================================
   STICKY PRICE BAR — mobile only
   ============================================ */
.sticky-price-bar {
    display: none; /* показуємо тільки на мобільному */
}

@media (max-width: 900px) {
    .sticky-price-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 12px 16px;
        background: #1E3A5F;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
        /* прихований за замовчуванням, до першого параметра */
        transform: translateY(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        /* safe area для iPhone */
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }

    .sticky-price-bar.visible {
        transform: translateY(0);
    }

    .sticky-price-bar.hidden-by-form {
        transform: translateY(100%);
        pointer-events: none;
    }

    .sticky-bar-summary {
        flex: 1;
        font-size: 0.82rem;
        color: #d0dce8;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sticky-bar-btn {
        flex-shrink: 0;
        padding: 10px 20px;
        background: linear-gradient(135deg, #DA1A32, #b81528);
        border: none;
        border-radius: 8px;
        color: #fff;
        font-size: 0.9rem;
        font-weight: 700;
        cursor: pointer;
        white-space: nowrap;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .sticky-bar-btn:active {
        transform: scale(0.96);
    }
}

/* Mobile responsive */
@media (max-width: 600px) {
    .np-row-2 {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   SEO SECTIONS
   ============================================ */
.seo-section {
    padding: 60px 0;
}

.seo-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--navy);
    text-align: center;
    margin-bottom: 10px;
}

/*
.seo-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--red);
    margin: 15px auto 0;
    border-radius: 2px;
}
*/

.seo-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}



/* Advantages */
.advantages-grid {
	margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #3AAFD9 0%, #2d8eb3 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon i {
    font-size: 28px;
    color: #fff;
}

.advantage-card h3 {
    font-size: 1.1rem;
    color: #1E3A5F;
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 1.8rem;
    color: #1E3A5F;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.about-text ul {
    padding-left: 25px;
    margin: 15px 0;
}

.about-text li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 1rem;
}

.about-text li::marker {
    color: #DA1A32;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
	max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
        text-align: center;
    }
}

/* ============================================
/* ============================================
   PRINT GALLERY — блок «Про нас / Процес»
   ============================================ */
.print-gallery {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeef3;
}

/* Заголовок розділу */
.print-gallery-heading {
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 700;
    color: #1E3A5F;
    margin: 0 0 6px;
    padding-left: 16px;
    border-left: 4px solid #DA1A32;
    line-height: 1.3;
}

.print-gallery-subhead {
    font-size: 0.88rem;
    color: #7a8a9a;
    padding-left: 20px;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Загальний layout: текст зверху, картинка під текстом */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* HOW IT WORKS */
.how-it-works {
    margin-top: 28px;
}

.how-it-works-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #DA1A32;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.process-step {
    background: #f8f9fa;
    border: 1px solid #eaeef3;
    border-radius: 12px;
    padding: 16px 14px;
}

.process-step__num {
    font-size: 1.4rem;
    font-weight: 800;
    color: #DA1A32;
    line-height: 1;
    margin-bottom: 8px;
    opacity: 0.7;
}

.process-step__text {
    font-size: 0.86rem;
    color: #4a5a6a;
    line-height: 1.5;
}

/* Переваги — нижній рядок */
.about-advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.about-adv-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border: 1px solid #eaeef3;
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 0.82rem;
    color: #3a4a5a;
    line-height: 1.3;
}

.about-adv-item i {
    color: #1E3A5F;
    font-size: 0.95rem;
    flex-shrink: 0;
	margin-top: 4px;
}

/* Картинка — під текстом, на всю ширину */
.about-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-height: 340px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 900px) {
    .print-gallery {
        padding: 40px 20px;
        margin: 40px 16px;
        border-radius: 16px;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 540px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}


/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 10px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #1E3A5F;
    text-align: left;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: #1E3A5F;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 600px) {
    .seo-section {
        padding: 40px 0;
    }
    

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}


/* ===============================
   SEO SECTION – PRICING TABLE
   =============================== */

.seo-section {
    padding: 40px 0;
}

.seo-title {
    text-align: center;
    margin-bottom: 8px;
}

.seo-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

/* ===============================
   TABLE WRAPPER
   =============================== */

.pricing-table-wrapper {
    margin: 0 auto 20px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
    overflow: hidden; /* важливо для мобільних */
}

/* ===============================
   TABLE
   =============================== */

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* ключ до компактності */
    font-size: 0.9rem;
}

/* HEADER */
.pricing-table thead th {
    background: linear-gradient(135deg, #1E3A5F, #2C5282);
    color: #fff;
    padding: 10px 6px;
    font-weight: 600;
    text-align: center;
    font-size: 0.8rem;
}

/* BODY ROWS */
.pricing-table tbody tr {
    border-bottom: 1px solid #eef1f4;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

/* CELLS */
.pricing-table td {
    padding: 10px 6px;
    text-align: center;
    vertical-align: middle;
}

/* LEFT COLUMN – QUANTITY */
.pricing-table td.size-cell {
    background: #f8fafc;
    font-weight: 600;
    color: #1E3A5F;
    font-size: 0.85rem;
}

/* PRICE */
.price-total {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.15;
    color: #1E3A5F;
}

.price-per-item {
    display: block;
    font-size: 0.7rem;
    color: #777;
}

/* ===============================
   HIGHLIGHT – BEST VALUE
   =============================== */

.highlight-col {
    background: rgba(218, 26, 50, 0.06);
}

.price-total.highlight {
    color: #DA1A32;
}

/* BADGE "Вигідно" */
.badge {
    display: inline-block;
    margin-top: 5px;
    background: #DA1A32;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 7px 3px 7px;
    border-radius: 10px;
    text-transform: uppercase;
    line-height: 1;
}

/* ===============================
   NOTE + CTA
   =============================== */

.pricing-note {
    text-align: center;
    font-size: 0.8rem;
    color: #777;
    margin: 16px 0 22px;
}

.pricing-cta {
    text-align: center;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #DA1A32, #b81528);
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(218, 26, 50, 0.25);
}

.pricing-btn i {
    font-size: 1rem;
}

/* ===============================
   DESKTOP TUNING
   =============================== */

@media (min-width: 768px) {
    .pricing-table {
        font-size: 0.95rem;
    }

    .pricing-table thead th {
        font-size: 0.85rem;
        padding: 12px 10px;
    }

    .pricing-table td {
        padding: 12px 10px;
    }

    .price-total {
        font-size: 1rem;
    }
}

/*галерея*/


.print-gallery {
  max-width: 1200px;
  margin: 80px auto;
  padding: 50px 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

.gallery-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1E3A5F;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.gallery-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #DA1A32, #FFC857);
  border-radius: 2px;
}

.gallery-description {
  text-align: center;
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-grid figure {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  margin: 0;
}

.gallery-grid figure:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 58, 95, 0.15);
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.gallery-grid figcaption {
  padding: 15px;
  font-size: 0.9rem;
  color: #1E3A5F;
  text-align: center;
  background: #fff;
  font-weight: 500;
  line-height: 1.4;
}

.print-usage-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.print-usage-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #555;
}

.print-usage-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #7AB72B 0%, #5a9a1a 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}

.services-cta {
  text-align: center;
}

.services-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: linear-gradient(135deg, #DA1A32 0%, #b81528 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(218, 26, 50, 0.3);
}

.services-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(218, 26, 50, 0.4);
  background: linear-gradient(135deg, #FFC857 0%, #e6b34d 100%);
  color: #1E3A5F;
}

.services-cta .cta-button svg {
  width: 20px;
  height: 20px;
}

/* адаптив галереї */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .print-gallery {
    padding: 35px 20px;
    margin: 50px 15px;
    border-radius: 16px;
  }
  
  .gallery-title {
    font-size: 1.4rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-grid img {
    height: 220px;
  }
  
  .print-usage-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .services-cta .cta-button {
    width: 100%;
    justify-content: center;
  }
}

.other-services-section {
    padding: 50px 0 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
}

.other-services-section .section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

#otherPrintSubcategories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.subcategory-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 2px 12px rgba(30, 58, 95, 0.08);
    transition: all 0.3s ease;
}

.subcategory-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
    box-shadow: 0 12px 32px rgba(58, 175, 217, 0.2);
}

.subcategory-card:hover .subcategory-icon {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--navy) 100%);
}

.subcategory-card:hover .subcategory-icon svg .st0 {
    fill: var(--white);
}

.subcategory-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    border-radius: 50%;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.subcategory-icon svg {
    width: 36px;
    height: 36px;
}

.subcategory-icon svg .st0 {
    fill: var(--navy);
    transition: fill 0.3s ease;
}

.subcategory-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

/* Responsive subcategories */
@media (max-width: 900px) {
    #otherPrintSubcategories {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 600px) {
    #otherPrintSubcategories {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 16px;
        margin: 40px auto;
    }
    
    .subcategory-card {
        padding: 18px 12px;
    }
    
    .subcategory-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 10px;
    }
    
    .subcategory-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .subcategory-name {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    #otherPrintSubcategories {
        grid-template-columns: repeat(2, 1fr);
    }
}

.text-line.dragging {
    opacity: 0.7;
}
/* ============================================
   VIDEO SECTION - Відео
   ============================================ */

.video-section {
    padding: 60px 20px;
    background: var(--gray-light);
}

.video-wrapper {
    position: relative;
    width: 100%;
	max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.2);
    aspect-ratio: 16 / 9;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 15px;
    }
    
    .video-wrapper {
        border-radius: 12px;
    }
	    .window-size-block {
        padding: 0 15px 15px;
        margin-bottom: 10px;
    }
}
.video-description {
    max-width: 800px;
    margin: 20px auto 0;
    text-align: center;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .video-description {
        font-size: 0.9rem;
        margin-top: 15px;
    }
}


/* ============================================
   CONFIGURATOR SUMMARY — статичний блок для краулерів
   ============================================ */
.configurator-summary {
    background: #f8f9fa;
    border-top: 1px solid #eaeef3;
    border-bottom: 1px solid #eaeef3;
    padding: 40px 0;
}

.configurator-summary__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.configurator-summary__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 16px;
    line-height: 1.35;
}

.configurator-summary p {
    font-size: 0.95rem;
    color: #4a5a6a;
    line-height: 1.75;
    margin-bottom: 12px;
}

.configurator-summary p:last-child {
    margin-bottom: 0;
}