/* ============================================
   BUSINESS HOURS DECAL - STYLES
   Сторінка замовлення наклейок "Графік роботи"
   ============================================ */

/* Google Font Rubik for SVG preview */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;500;800&display=swap');

/* ============================================
   HERO SECTION - Image full height on right
   ============================================ */

.bh-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 256px;
    overflow: hidden;
    background: #f8f9fa;
}

.bh-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 30px 30px 50px;
    max-width: 600px;
}

.bh-hero-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.bh-hero-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
}

.bh-hero-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}

.bh-hero-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100%;
}

/* ============================================
   HERO ANIMATIONS - with header offset
   ============================================ */

/* Slide up animation */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.7s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide from right animation (for image) */
.animate-slide-left {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    animation: slideLeft 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes slideLeft {
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

/* Animation delays */
.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.5s;
}

.delay-3 {
    animation-delay: 0.7s;
}

/* Hero Responsive */
@media (max-width: 900px) {
    .bh-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .bh-hero-content {
        padding: 35px 25px;
        max-width: 100%;
        order: 1;
    }
    
    .bh-hero-image {
        order: 2;
        min-height: 220px;
    }
    
    .bh-hero-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .bh-hero-content {
        padding: 25px 20px;
    }
    
    .bh-hero-title {
        font-size: 1.3rem;
    }
    
    .bh-hero-desc {
        font-size: 0.95rem;
    }
    
    .bh-hero-image {
        min-height: 180px;
    }
}

/* Main Container */
.bh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Section Title */
.bh-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.bh-section-title h2 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.bh-section-title p {
    color: #666;
    font-size: 1rem;
}

/* Style Cards Grid - 3 columns */
.bh-styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.bh-styles-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .bh-styles-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bh-styles-grid-3 {
        grid-template-columns: 1fr;
    }
}

.bh-style-card {
    background: var(--white);
    border: 3px solid var(--gray-light);
    border-radius: 16px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.bh-style-card:hover {
    border-color: var(--cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(58, 175, 217, 0.2);
}

.bh-style-card.active {
    border-color: var(--red);
    box-shadow: 0 10px 30px rgba(218, 26, 50, 0.25);
}

.bh-style-card.active .bh-style-name {
    color: var(--red);
}

.bh-style-preview {
    background: linear-gradient(145deg, #5a6270 0%, #6b7280 50%, #4a5563 100%);
    border-radius: 0;
    padding: 15px;
    margin-bottom: 0;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bh-style-preview-img {
    padding: 0;
    background: none;
}

.bh-style-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.bh-style-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
    padding: 15px 15px 0 15px;
    transition: color 0.3s ease;
}

.bh-style-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    padding: 5px 15px 15px 15px;
}

/* Form Section */
.bh-form-section {
    border-radius: 16px;
    padding: 15px 0;
    margin-bottom: 30px;
    display: none;
}

.bh-form-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.bh-form-title {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 20px;
    text-align: center;
}

/* Compact Layout */
.bh-compact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.bh-compact-left {
    position: sticky;
    top: 100px;
}

.bh-live-preview {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Option Groups */
.bh-option-group {
    margin-bottom: 20px;
}

/* Time Row */
.bh-time-row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.bh-time-row label {
    font-weight: 600;
    color: var(--navy);
}

.bh-minimal-time {
    width: 60px !important;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.bh-time-dash {
    font-size: 1.2rem;
    color: #666;
}

.bh-time-compact {
    width: 52px !important;
    text-align: center;
    padding: 8px 6px;
    font-size: 1rem;
}

/* Days Row */
.bh-days-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.bh-days-select {
    min-width: 90px;
    padding: 8px 12px;
}

.bh-weekend-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
}

/* Color Palette */
.bh-color-palette {
    display: grid;
    grid-template-columns: repeat(6, 42px);
    gap: 10px;
    justify-content: center;
}

.bh-color-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.bh-color-btn:hover {
    transform: scale(1.1);
}

.bh-color-btn.active {
    border-color: var(--navy);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transform: scale(1.15);
}

.bh-color-btn.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.bh-color-btn[data-color="#E8EAEF"].active::after,
.bh-color-btn[data-color="#FFC700"].active::after,
.bh-color-btn[data-color="#59CDB9"].active::after {
    color: var(--navy);
    text-shadow: none;
}

.bh-color-selected {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.bh-color-selected span {
    font-weight: 600;
    color: var(--navy);
}

/* Size Options */
.bh-size-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.bh-size-btn {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
}

.bh-size-btn:hover {
    border-color: var(--cyan);
}

.bh-size-btn.active {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
}

.bh-size-note {
    display: block;
    text-align: center;
    margin-top: 8px;
    color: #888;
    font-size: 0.8rem;
}

/* Delivery Options */
.bh-delivery-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.bh-delivery-btn {
    flex: 1;
    min-width: 100px;
    padding: 10px 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bh-delivery-btn:hover {
    border-color: var(--cyan);
}

.bh-delivery-btn.active {
    border-color: var(--red);
    background: rgba(218, 26, 50, 0.05);
}

.bh-delivery-btn .delivery-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

.bh-delivery-btn .delivery-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--red);
}

/* Summary Box */
.bh-summary-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.bh-summary-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.bh-summary-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bh-summary-label {
    font-size: 0.85rem;
    color: #666;
}

.bh-summary-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.bh-summary-sep {
    color: #ccc;
}

.bh-summary-total-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.bh-summary-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--red);
}

/* Contact Fields */
.bh-contact-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

/* Form Inputs */
.bh-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.bh-form-input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(218, 26, 50, 0.1);
}

.bh-form-input::placeholder {
    color: #999;
}

.bh-form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.bh-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 8px auto 0;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--yellow) 0%, #e6b34d 100%);
    color: var(--navy);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 200, 87, 0.4);
}

.bh-submit-btn i {
    font-size: 1.1rem;
}

.bh-submit-btn:hover {
    background: linear-gradient(135deg, var(--red) 0%, #c41528 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218, 26, 50, 0.4);
}

/* ============================================
   SHIPPING STEP STYLES
   ============================================ */

.bh-shipping-step {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    animation: fadeIn 0.3s ease;
}

.bh-shipping-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 15px;
    text-align: center;
}

.bh-shipping-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bh-shipping-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 15px 12px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bh-shipping-btn i {
    font-size: 1.4rem;
    color: var(--navy);
}

.bh-shipping-btn span {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.bh-shipping-btn small {
    font-size: 0.75rem;
    color: #888;
}

.bh-shipping-btn:hover {
    border-color: var(--cyan);
    background: #f0fafc;
}

.bh-shipping-btn.active {
    border-color: var(--red);
    background: #fff5f5;
}

.bh-shipping-btn.active i,
.bh-shipping-btn.active span {
    color: var(--red);
}

/* Contact Step */
.bh-contact-step {
    margin-top: 20px;
    animation: fadeIn 0.3s ease;
}

.bh-novaposhta-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

/* Nova Poshta Field with Dropdown */
.bh-np-field {
    position: relative;
}

.bh-np-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.bh-np-dropdown.active {
    display: block;
}

.bh-np-dropdown-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.bh-np-dropdown-item:last-child {
    border-bottom: none;
}

.bh-np-dropdown-item:hover {
    background: #f5f5f5;
}

.bh-np-dropdown-item.selected {
    background: #e3f2fd;
}

.bh-np-dropdown-loading {
    padding: 15px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.bh-np-city:disabled,
.bh-np-warehouse:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .bh-shipping-options {
        grid-template-columns: 1fr;
    }
    
    .bh-novaposhta-fields {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CUSTOM FORM STYLES (Індивідуальний)
   ============================================ */

.bh-custom-form-layout {
    max-width: 700px;
    margin: 0 auto;
}

/* Info Box - compact inline */
.bh-custom-info-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    border: 1px solid #d0d7de;
    border-radius: 10px;
    padding: 12px 20px;
    margin-bottom: 25px;
}

.bh-custom-info-icon {
    display: none;
}

.bh-custom-info-content h4 {
    display: none;
}

.bh-custom-info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 25px;
    justify-content: center;
}

.bh-custom-info-content li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-size: 0.85rem;
}

.bh-custom-info-content li i {
    color: #4caf50;
    font-size: 0.8rem;
}

/* Form Grid */
.bh-custom-form-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Form Groups */
.bh-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bh-form-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

/* File Upload */
.bh-file-upload {
    position: relative;
}

.bh-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.bh-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px;
    border: 2px dashed #ccc;
    border-radius: 12px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bh-file-label:hover {
    border-color: var(--cyan);
    background: #f0f8ff;
}

.bh-file-label i {
    font-size: 2rem;
    color: var(--cyan);
}

.bh-file-label span {
    font-weight: 600;
    color: var(--navy);
}

.bh-file-label small {
    color: #888;
    font-size: 0.8rem;
}

.bh-file-preview {
    margin-top: 10px;
    display: none;
}

.bh-file-preview.has-file {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #e8f5e9;
    border-radius: 8px;
}

.bh-file-preview img {
    max-width: 60px;
    max-height: 60px;
    border-radius: 6px;
}

.bh-file-preview .file-name {
    font-size: 0.9rem;
    color: var(--navy);
}

.bh-file-preview .file-remove {
    margin-left: auto;
    padding: 5px 10px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    color: #666;
}

.bh-file-preview .file-remove:hover {
    background: #ffebee;
    border-color: var(--red);
    color: var(--red);
}

/* Custom Price Box */
.bh-custom-price-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid #ffb74d;
    border-radius: 12px;
    padding: 20px 20px 10px;
    text-align: center;
}

.bh-custom-price-label {
    font-size: 0.95rem;
    color: #e65100;
    margin-bottom: 6px;
}

.bh-custom-price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e65100;
}

.bh-custom-price-value span {
    font-size: 2rem;
}

.bh-custom-price-note {
    display: block;
    margin-top: 8px;
    color: #bf360c;
    font-size: 0.8rem;
}

.bh-submit-btn-custom {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.bh-submit-btn-custom:hover {
    background: linear-gradient(135deg, #e65100 0%, #bf360c 100%);
}

/* Info Section */
.bh-info-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    margin-bottom: 40px;
}

.bh-info-main {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.bh-info-sub {
    font-size: 1rem;
    color: #666;
}

.bh-info-sub a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}

.bh-info-sub a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    .bh-compact-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bh-compact-left {
        position: static;
    }
    
    .bh-compact-left .bh-live-preview {
        min-height: auto;
    }
    
    .bh-days-row {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .bh-days-select {
        min-width: 70px;
        font-size: 0.85rem;
        padding: 6px 8px;
    }
    
    .bh-time-compact {
        width: 40px !important;
        font-size: 0.9rem;
        padding: 6px 4px;
    }
    
    .bh-color-palette {
        grid-template-columns: repeat(6, 38px);
        gap: 6px;
    }
    
    .bh-color-btn {
        width: 38px;
        height: 38px;
    }
    
    .bh-summary-line {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
        padding: 0 10px;
    }
    
    .bh-summary-sep {
        display: none;
    }
    
    .bh-summary-item {
        justify-content: flex-start;
        width: 100%;
    }
    
    .bh-summary-total-line {
        justify-content: flex-start;
        padding: 10px 10px 0;
    }
    
    .bh-contact-fields {
        grid-template-columns: 1fr;
    }
    
    .bh-custom-info-box {
        padding: 10px 15px;
    }
    
    .bh-custom-info-content ul {
        flex-direction: column;
        gap: 5px;
    }
    
    .bh-info-main {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .bh-size-options {
        flex-direction: column;
    }
    
    .bh-size-btn {
        width: 100%;
        text-align: center;
    }
    
    .bh-delivery-options {
        flex-direction: column;
    }
    
    .bh-delivery-btn {
        min-width: auto;
    }
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.bh-content-section {
    padding: 50px 20px;
    background: var(--white);
}

.bh-content-section.bh-content-alt {
    background: #f8f9fa;
}

.bh-content-container {
    max-width: 1100px;
    margin: 0 auto;
}

.bh-content-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.bh-content-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
}

/* Content Cards Grid */
.bh-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bh-content-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bh-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bh-content-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--red);
}

.bh-content-icon i {
    display: block;
}

.bh-content-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.bh-content-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Steps */
.bh-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bh-step {
    text-align: center;
    position: relative;
}

.bh-step::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 25px;
    font-size: 1.5rem;
    color: #ccc;
}

.bh-step:last-child::after {
    display: none;
}

.bh-step-number {
    width: 50px;
    height: 50px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.bh-step-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.bh-step-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Material Info */
.bh-material-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 16px;
    padding: 35px;
}

.bh-material-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
}

.bh-material-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.bh-material-text li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #333;
}

.bh-material-text li i {
    color: #1976d2;
    font-size: 0.9rem;
}

.bh-material-note {
    background: white;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 0.9rem;
    color: #555;
    margin-top: 20px;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.bh-faq-section {
    padding: 50px 20px;
    background: var(--white);
}

.bh-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.bh-faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.bh-faq-item:last-child {
    border-bottom: none;
}

.bh-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.bh-faq-question span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    padding-right: 20px;
}

.bh-faq-question i {
    font-size: 1rem;
    color: #888;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.bh-faq-item.active .bh-faq-question i {
    transform: rotate(180deg);
    color: var(--red);
}

.bh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.bh-faq-item.active .bh-faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.bh-faq-answer p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* ============================================
   RECOMMENDED STICKERS
   ============================================ */

.bh-recommended-section {
    padding: 50px 20px;
    background: #f8f9fa;
}

.bh-recommended-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-top: -20px;
    margin-bottom: 30px;
}

.bh-recommended-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.bh-recommended-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.bh-recommended-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.bh-recommended-img {
    height: 175px;
    overflow: hidden;
}

.bh-recommended-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bh-recommended-card:hover .bh-recommended-img img {
    transform: scale(1.05);
}

.bh-recommended-name {
    padding: 12px 15px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
}

.bh-recommended-more {
    text-align: center;
    margin-top: 30px;
}

.bh-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--navy);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bh-more-btn:hover {
    background: var(--red);
    transform: translateY(-2px);
}

/* ============================================
   CTA SECTION
   ============================================ */

.bh-cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #152a45 100%);
    padding: 50px 20px;
    text-align: center;
    color: white;
}

.bh-cta-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.bh-cta-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.bh-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--yellow);
    color: var(--navy);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.bh-cta-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.bh-cta-contact {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.bh-cta-contact p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.bh-cta-phone {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--yellow);
    text-decoration: none;
}

.bh-cta-phone:hover {
    color: white;
}

/* ============================================
   RESPONSIVE FOR NEW SECTIONS
   ============================================ */

@media (max-width: 900px) {
    .bh-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bh-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .bh-step::after {
        display: none;
    }
    
    .bh-recommended-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bh-recommended-img {
        height: 150px;
    }
}

@media (max-width: 600px) {
    .bh-content-title {
        font-size: 1.5rem;
    }
    
    .bh-steps {
        grid-template-columns: 1fr;
    }
    
    .bh-material-info {
        padding: 25px 20px;
    }
    
    .bh-faq-question span {
        font-size: 0.95rem;
    }
    
    .bh-recommended-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .bh-recommended-img {
        height: 130px;
    }
    
    .bh-recommended-name {
        font-size: 0.85rem;
        padding: 10px;
    }
    
    .bh-cta-content h2 {
        font-size: 1.4rem;
    }
}
.bh-final-submit {
    margin-top: 15px;
}

/* ============================================
   VIDEO SECTION - Відео
   ============================================ */

.video-section {
    padding: 60px 20px;
    background: var(--gray-light);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    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;
    }
}

/* ============================================
   CTA ORDER SECTION - Заклик до замовлення
   ============================================ */
.cta-order-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.cta-order-text {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.5;
}

.cta-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #DA1A32 0%, #b8152a 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(218, 26, 50, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218, 26, 50, 0.45);
}

.cta-order-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .cta-order-section {
        padding: 40px 15px;
    }
    
    .cta-order-text {
        font-size: 0.9rem;
    }
    
    .cta-order-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.bh-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.bh-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s ease;
}

.bh-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.bh-toast i {
    font-size: 20px;
    flex-shrink: 0;
}

.bh-toast span {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.bh-toast-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #999;
    transition: color 0.2s;
}

.bh-toast-close:hover {
    color: #333;
}

.bh-toast-success {
    border-left: 4px solid #27AE60;
}

.bh-toast-success i {
    color: #27AE60;
}

.bh-toast-error {
    border-left: 4px solid #E74C3C;
}

.bh-toast-error i {
    color: #E74C3C;
}

.bh-toast-warning {
    border-left: 4px solid #F39C12;
}

.bh-toast-warning i {
    color: #F39C12;
}

.bh-toast-info {
    border-left: 4px solid #3498DB;
}

.bh-toast-info i {
    color: #3498DB;
}

/* ============================================
   SUCCESS MODAL
   ============================================ */
.bh-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.bh-success-modal.show {
    opacity: 1;
    visibility: visible;
}

.bh-success-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.bh-success-modal-content {
    position: relative;
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease;
}

.bh-success-modal.show .bh-success-modal-content {
    transform: scale(1) translateY(0);
}

.bh-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: successPulse 0.5s ease;
}

@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.bh-success-icon i {
    font-size: 36px;
    color: white;
}

.bh-success-modal-content h3 {
    font-size: 24px;
    color: #1E3A5F;
    margin-bottom: 12px;
}

.bh-success-modal-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.bh-order-number {
    background: #f0f4f8;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    margin: 10px 0 20px;
}

.bh-order-number strong {
    color: #1E3A5F;
    font-size: 18px;
}

.bh-success-modal-btn {
    padding: 14px 40px;
    background: linear-gradient(135deg, #1E3A5F 0%, #2C5282 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bh-success-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

/* ============================================
   FORM VALIDATION STYLES
   ============================================ */
.bh-input-error {
    border-color: #E74C3C !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.bh-field-error {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #E74C3C;
    font-size: 12px;
    margin-top: 6px;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bh-field-error i {
    font-size: 14px;
}

/* Clear error on focus */
.bh-form-input:focus {
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 3px rgba(58, 175, 217, 0.15) !important;
}

.bh-form-input:focus.bh-input-error {
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 3px rgba(58, 175, 217, 0.15) !important;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .bh-toast-container {
        top: auto;
        bottom: 20px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .bh-toast {
        transform: translateY(120%);
    }
    
    .bh-toast.show {
        transform: translateY(0);
    }
    
    .bh-success-modal-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .bh-success-icon {
        width: 60px;
        height: 60px;
    }
    
    .bh-success-icon i {
        font-size: 28px;
    }
    
    .bh-success-modal-content h3 {
        font-size: 20px;
    }
}
/* ============================================
   STYLE CARD BUTTONS
   ============================================ */
.bh-style-select-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    margin-top: 15px;
    background: linear-gradient(135deg, #1E3A5F 0%, #2C5282 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bh-style-select-btn:hover {
    background: linear-gradient(135deg, #2C5282 0%, #3D6A9F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
}

.bh-style-select-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.bh-style-card:hover .bh-style-select-btn i {
    transform: scale(1.1);
}

.bh-style-card.selected .bh-style-select-btn {
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
}

.bh-style-card.selected .bh-style-select-btn::after {
    content: ' ✓';
}

/* Покращення hover ефекту для карток */
.bh-style-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.bh-style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.2);
}

.bh-style-card:hover .bh-style-preview-img img {
    transform: scale(1.05);
}

.bh-style-preview-img {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.bh-style-preview-img img {
    transition: transform 0.4s ease;
}


.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;
}
