
/* ========================================
   Header Height Overrides - Force 30px
   ======================================== */
.ht-header-top {
    height: 30px !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    font-size: 10px !important;
    line-height: 30px !important;
    background: #f5f5f5 !important;
}

.ht-header-top .ht-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 100% !important;
    gap: 8px !important;
}

.ht-company-name, .ht-header-top .ht-contact-info {
    font-size: 10px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

/* ========================================
   Products Page Styles
   ======================================== */
.ht-page-header {
    position: relative;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    background-color: var(--color-accent);
    color: var(--color-white);
    text-align: center;
}
.ht-page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #2d3748 100%);
    z-index: 0;
}
.ht-page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.ht-page-header-content {
    position: relative;
    z-index: 1;
}
.ht-page-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}
.ht-page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
}
.ht-breadcrumb {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}
.ht-breadcrumb a {
    color: var(--color-white);
}
.ht-breadcrumb .separator {
    margin: 0 var(--spacing-xs);
}

.ht-section {
    padding: var(--spacing-2xl) 0;
}
.ht-product-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}
.ht-filter-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.ht-filter-label {
    font-weight: 500;
    color: var(--color-gray-700);
}
.ht-filter-buttons {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}
.ht-filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    color: var(--color-gray-700);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.ht-filter-btn:hover, .ht-filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.ht-filter-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 4px;
    background: var(--color-white);
    min-width: 150px;
}

.ht-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}
.ht-product-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
}
.ht-product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.ht-product-image-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: var(--color-gray-100);
}
.ht-product-image, .ht-product-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ht-product-card:hover .ht-product-image {
    transform: scale(1.05);
}
.ht-product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-gray-300);
}
.ht-product-tags {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    display: flex;
    gap: var(--spacing-xs);
    z-index: 2;
}
.ht-product-tag {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 500;
}
.ht-product-actions {
    position: absolute;
    bottom: var(--spacing-sm);
    right: var(--spacing-sm);
    display: flex;
    gap: var(--spacing-xs);
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}
.ht-product-card:hover .ht-product-actions {
    opacity: 1;
    transform: translateY(0);
}
.ht-product-action-btn {
    width: 36px;
    height: 36px;
    background: var(--color-white);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}
.ht-product-action-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.ht-product-content {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.ht-product-meta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--color-gray-500);
}
.ht-product-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}
.ht-product-title a {
    color: var(--color-dark);
}
.ht-product-title a:hover {
    color: var(--color-primary);
}
.ht-product-subtitle {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-bottom: var(--spacing-sm);
}
.ht-product-excerpt {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}
.ht-product-footer {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: auto;
}
.ht-product-btn, .ht-product-inquiry-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 4px;
    text-align: center;
    flex: 1;
}
.ht-product-btn {
    background: var(--color-gray-100);
    color: var(--color-dark);
}
.ht-product-btn:hover {
    background: var(--color-gray-200);
}
.ht-product-inquiry-btn {
    background: var(--color-primary);
    color: var(--color-white);
}
.ht-product-inquiry-btn:hover {
    background: var(--color-primary-dark);
}

.ht-products-pagination {
    margin-top: var(--spacing-2xl);
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
}
.ht-products-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gray-200);
    border-radius: 4px;
    color: var(--color-gray-700);
    transition: var(--transition-fast);
}
.ht-products-pagination .page-numbers.current,
.ht-products-pagination .page-numbers:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* ========================================
   Single Product Page Styles
   ======================================== */
.ht-product-hero {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    background-color: var(--color-white);
}
.ht-product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}
@media (max-width: 992px) {
    .ht-product-hero-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Homepage News & Contact Polish
   ======================================== */
.page-template-home .news {
    padding: 96px 0 110px;
}

.page-template-home .news-header {
    align-items: center;
    margin-bottom: 42px;
}

.page-template-home .news-header h2 {
    color: #163250;
    font-size: clamp(2rem, 3vw, 3rem);
}

.page-template-home .news-card {
    background: #ffffff;
    border: 1px solid #e8edf4;
    box-shadow: 0 18px 50px rgba(18, 39, 63, 0.08);
}

.page-template-home .news .reveal,
.page-template-home .news .reveal.active {
    opacity: 1 !important;
    transform: none !important;
}

.page-template-home .news-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 17, 27, 0.02) 0%, rgba(10, 17, 27, 0.14) 100%);
    pointer-events: none;
}

.page-template-home .news-card-content {
    padding: 24px 24px 28px;
}

.page-template-home .news-card-date {
    color: #8c99aa;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-template-home .news-card-title {
    min-height: 3.2em;
    color: #17304d;
    line-height: 1.4;
}

.page-template-home .news-card-title a {
    color: inherit;
}

.page-template-home .news-card-excerpt {
    color: #617187;
    line-height: 1.75;
}

.page-template-home .contact {
    min-height: 720px;
}

.page-template-home .contact-info {
    padding: 64px 72px;
    background: linear-gradient(135deg, #161616 0%, #202020 100%);
}

.page-template-home .contact-info h2 {
    color: #ffffff;
}

.page-template-home .contact-info p {
    color: rgba(255, 255, 255, 0.76);
}

.page-template-home .contact-details li {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
}

.page-template-home .contact-form-wrapper {
    padding: 64px 72px;
}

.page-template-home .contact-form-wrapper h3 {
    color: #17304d;
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.page-template-home .ht-contact-form input,
.page-template-home .ht-contact-form textarea {
    border: 1px solid #dce4ee !important;
    border-radius: 12px !important;
    padding: 1rem 1.05rem !important;
    box-shadow: none !important;
}

.page-template-home .ht-contact-form input:focus,
.page-template-home .ht-contact-form textarea:focus {
    outline: none;
    border-color: #c41230 !important;
    box-shadow: 0 0 0 4px rgba(196, 18, 48, 0.08) !important;
}

.page-template-home .ht-contact-form button.btn-primary {
    background: #c41230 !important;
    border: 0 !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    min-height: 54px;
    box-shadow: 0 14px 30px rgba(196, 18, 48, 0.22);
}

.page-template-home .ht-contact-form button.btn-primary:hover {
    background: #9a0e26 !important;
}

@media (max-width: 992px) {
    .page-template-home .contact-info,
    .page-template-home .contact-form-wrapper {
        padding: 40px 28px;
    }
}
.ht-product-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}
.ht-product-main-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-gray-100);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ht-product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ht-product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}
.ht-product-thumbnail {
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    aspect-ratio: 1/1;
}
.ht-product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ht-product-thumbnail.active,
.ht-product-thumbnail:hover {
    border-color: var(--color-primary);
}
.ht-product-info {
    display: flex;
    flex-direction: column;
}
.ht-product-breadcrumb {
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--color-gray-500);
}
.ht-product-breadcrumb a {
    color: var(--color-gray-600);
}
.ht-product-breadcrumb a:hover {
    color: var(--color-primary);
}
.ht-product-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
}
.ht-product-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
}
.ht-product-specs-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: var(--color-gray-100);
    border-radius: 8px;
}
.ht-spec-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.ht-spec-icon {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}
.ht-spec-content {
    display: flex;
    flex-direction: column;
}
.ht-spec-label {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ht-spec-value {
    font-weight: 500;
    color: var(--color-dark);
}
.ht-product-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}
.ht-product-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition-fast);
}
.ht-product-share {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-gray-200);
}
.ht-share-buttons {
    display: flex;
    gap: var(--spacing-sm);
}
.ht-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    color: var(--color-gray-600);
    transition: var(--transition-fast);
}
.ht-share-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Tabs */
.ht-product-tabs {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.ht-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--color-gray-200);
    background: var(--color-gray-100);
    overflow-x: auto;
}
.ht-tab-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin: 10px 0 10px 10px;
    padding: 0.7rem 1.25rem;
    font-weight: 600;
    color: #516074;
    border: 1px solid #d5deea;
    border-bottom: 1px solid #d5deea;
    border-radius: 999px;
    background: #f8fbff;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}
.ht-tab-link.active,
.ht-tab-link:hover {
    color: #fff;
    border-color: #2d579a;
    background: #2d579a;
    box-shadow: 0 10px 24px rgba(45, 87, 154, 0.18);
}
.ht-tabs-content {
    padding: var(--spacing-xl);
}

.ht-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid #d9e2ef;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.ht-faq-question:hover,
.ht-faq-item.active .ht-faq-question {
    border-color: #2d579a;
    box-shadow: 0 12px 24px rgba(45, 87, 154, 0.12);
}

.ht-faq-question h4 {
    margin: 0;
    flex: 1;
}
.ht-tab-content {
    display: none;
}
.ht-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Contact Page Styles
   ======================================== */
.ht-contact-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-white);
}
.ht-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-3xl);
}
@media (max-width: 992px) {
    .ht-contact-grid {
        grid-template-columns: 1fr;
    }
}
.ht-contact-info {
    background: var(--color-gray-100);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}
.ht-contact-info-header {
    margin-bottom: var(--spacing-xl);
}
.ht-contact-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}
.ht-contact-description {
    color: var(--color-gray-600);
}
.ht-contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}
.ht-contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}
.ht-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.ht-contact-content h4 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}
.ht-contact-content p, .ht-contact-content a {
    color: var(--color-gray-600);
    line-height: 1.6;
}
.ht-contact-content a:hover {
    color: var(--color-primary);
}
.ht-contact-social h4 {
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}
.ht-social-links {
    display: flex;
    gap: var(--spacing-sm);
}
.ht-social-link {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}
.ht-social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}
.ht-contact-form-wrapper {
    padding: var(--spacing-xl);
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-100);
}
.ht-contact-form-header {
    margin-bottom: var(--spacing-xl);
}
.ht-form-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}
.ht-form-description {
    color: var(--color-gray-600);
}
.ht-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}
@media (max-width: 768px) {
    .ht-form-row {
        grid-template-columns: 1fr;
    }
}
.ht-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}
.ht-form-label {
    font-weight: 500;
    color: var(--color-dark);
    font-size: 0.875rem;
}
.ht-form-input, .ht-form-select, .ht-form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 4px;
    background: var(--color-white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.ht-form-input:focus, .ht-form-select:focus, .ht-form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(196, 18, 48, 0.1);
}
.ht-form-textarea {
    resize: vertical;
    min-height: 120px;
}
.ht-form-submit {
    margin-top: var(--spacing-lg);
}
.ht-form-submit .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}
.ht-map-section {
    margin-top: var(--spacing-3xl);
    height: auto;
    min-height: 450px;
    background: var(--color-gray-200);
    border-radius: 8px;
    overflow: visible;
}

/* ========================================
   Language Switcher Adjustments
   ======================================== */

/* Hide TranslatePress floater */
.trp-ls-floater {
    display: none !important;
}

/* Reduce height of header top to 30px */
.ht-header-top {
    height: 30px;
    box-sizing: border-box;
    padding: 0;
    font-size: 0.75rem; /* 12px */
    line-height: 30px; /* match height */
}

/* Adjust container to match height */
.ht-header-top .ht-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Style for language switcher in header top */
.ht-lang-switcher-top {
    margin-left: auto;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Ensure language switcher in header top is properly aligned and smaller */
.ht-lang-switcher-top .trp-ls-floater {
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 100%;
    display: flex;
    align-items: center;
}

.ht-lang-switcher-top .trp-ls-floater .trp-floater-current-language {
    color: inherit !important;
    font-weight: normal !important;
    font-size: 0.75rem !important;
    line-height: 1 !important;
}

.ht-lang-switcher-top .trp-ls-floater .trp-floater-current-language img {
    width: 14px !important;
    height: 10px !important;
    margin-right: 4px !important;
}

/* Hide the dropdown arrow if any */
.ht-lang-switcher-top .trp-ls-floater .trp-floater-current-language .trp-floater-current-language-name::after {
    display: none !important;
}

/* Adjust dropdown menu size */
.ht-lang-switcher-top .trp-ls-popup {
    top: 100% !important;
    min-width: 120px !important;
}

.ht-lang-switcher-top .trp-ls-popup a {
    padding: 6px 10px !important;
    font-size: 0.75rem !important;
}

.ht-lang-switcher-top .trp-ls-popup a img {
    width: 14px !important;
    height: 10px !important;
    margin-right: 6px !important;
}

/* Layout adjustments for header top */
.ht-header-top .ht-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    height: 100%;
}

.ht-company-name, .ht-header-top .ht-contact-info {
    white-space: nowrap;
    font-size: 0.75rem;
    line-height: 1;
}

/* Adjust header top background if needed */
.ht-header-top {
    background: rgba(245, 245, 245, 0.95);
}

/* Fix container width */
.ht-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Reduce header height */
.ht-header-top {
    padding: 6px 0;
    font-size: 0.8rem;
}

/* Ensure header doesn't overflow */
.ht-header, .ht-header.ht-header-transparent {
    width: 100%;
    box-sizing: border-box;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 1000;
}

/* Make main content full width */
.site-main {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Fix right side empty space */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

/* Adjust hero section to full width */
.hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Ensure header background covers full width */
.ht-header {
    background-color: rgba(255, 255, 255, 0.95);
}

/* Transparent header adjustments */
.ht-header.ht-header-transparent {
    background-color: transparent;
}

.ht-header.ht-header-transparent.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
}

/* Fix hero background to full width */
.hero-background {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Ensure images in hero cover full width */
.hero-background img {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Adjust header top container for better alignment */
.ht-header-top {
    background: rgba(245, 245, 245, 0.95);
}

/* Ensure logo and navigation stay within container */
.ht-header-main .ht-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Language switcher alignment */
.ht-lang-switcher-top {
    margin-left: auto;
}

/* Remove any max-width from parent containers */
.page-template-home .site-main {
    max-width: none;
    width: 100%;
}

/* Override media query for header top height */
@media (min-width: 1200px) {
    .ht-header-top {
        padding: 0 !important;
        height: 30px !important;
    }
    .ht-header-top .ht-container {
        gap: 8px !important;
    }
    .ht-company-name, .ht-contact-info {
        font-size: 0.7rem !important;
        line-height: 1 !important;
    }
}

/* Ensure hero section extends full width */
.hero {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
}
.hero-background {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
}
.hero-background img {
    width: 100% !important;
    margin-left: 0 !important;
}

/* ========================================
   Product Page Refresh 2026-03
   ======================================== */
.ht-products-archive .ht-page-header-content {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.ht-products-archive .ht-breadcrumb,
.page-template-page-about-us .ht-breadcrumb,
.post-type-archive-news .ht-breadcrumb,
.page-template-page-templates-contact .ht-breadcrumb {
    justify-content: center;
    width: 100%;
}

.ht-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #dce7f3;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ht-products-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
}

.ht-products-overview-item {
    min-width: 128px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(8, 18, 31, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.ht-products-overview-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.35rem;
    color: #fff;
}

.ht-products-overview-item span {
    color: #c5d4e3;
    font-size: 0.88rem;
}

.ht-products-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin: 0 0 28px;
    padding: 16px 20px;
    border: 1px solid #e4eaf2;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.ht-products-toolbar-copy {
    margin: 0;
    color: #53657c;
}

.ht-products-toolbar-link {
    color: var(--color-primary);
    font-weight: 700;
}

.ht-products-archive .ht-product-grid--archive {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ht-products-archive .ht-product-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e3ebf5;
    box-shadow: 0 22px 55px rgba(20, 39, 63, 0.08);
}

.ht-products-archive .ht-product-image-wrapper {
    padding-top: 68%;
    background:
        radial-gradient(circle at top right, rgba(255, 116, 48, 0.32), transparent 34%),
        linear-gradient(160deg, #eaf1f8 0%, #d6e2ee 100%);
}

.ht-products-archive .ht-product-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
    padding: 24px;
}

.ht-products-archive .ht-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ht-products-archive .ht-product-category,
.ht-products-archive .ht-product-brand {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.75rem;
    border-radius: 999px;
    background: #eef4fb;
    color: #43536a;
    font-size: 0.82rem;
    font-weight: 700;
}

.ht-products-archive .ht-product-subtitle {
    margin: 0;
    color: #17304d;
    font-size: 0.96rem;
    font-weight: 600;
}

.ht-products-archive .ht-product-excerpt {
    margin: 0;
    min-height: 4.8em;
    color: #607289;
}

.ht-products-archive .ht-product-footer {
    margin-top: auto;
    display: flex;
    gap: 12px;
}

.ht-products-archive .ht-product-footer a {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
}

.ht-product-image-placeholder--archive,
.ht-product-image-placeholder--hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 28px;
    background:
        radial-gradient(circle at top, rgba(255, 120, 51, 0.3), transparent 28%),
        linear-gradient(160deg, #17304d 0%, #0a1522 100%);
    color: #fff;
}

.ht-product-placeholder-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.ht-product-placeholder-copy {
    max-width: 220px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.5;
}

.ht-product-hero {
    background:
        radial-gradient(circle at top left, rgba(255, 128, 42, 0.12), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.ht-product-hero-grid {
    gap: 40px;
}

.ht-product-gallery-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 18px;
    align-items: stretch;
}

.ht-product-main-image {
    min-height: 420px;
    border-radius: 22px;
    border: 1px solid #dce6f1;
    box-shadow: 0 25px 60px rgba(19, 38, 61, 0.08);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(238, 243, 249, 0.98) 100%);
}

.ht-product-main-image img {
    object-fit: contain;
    padding: 28px;
}

.ht-product-thumbnails {
    grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
    gap: 12px;
}

.ht-product-thumbnail {
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(17, 30, 47, 0.06);
}

.ht-product-thumbnail img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.ht-product-meta--chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ht-product-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: #f5f7fa;
    color: #44546a;
    font-size: 0.9rem;
}

.ht-product-specs-quick {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ht-spec-item {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #e3ebf5;
    background: #fff;
    box-shadow: 0 12px 28px rgba(18, 39, 63, 0.05);
}

.ht-related-products .ht-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

@media (max-width: 1200px) {
    .ht-product-gallery-stage {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .ht-product-specs-quick {
        grid-template-columns: 1fr;
    }

    .ht-product-main-image,
    .ht-product-image-placeholder--hero {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .ht-products-archive .ht-product-footer {
        flex-direction: column;
    }

    .ht-product-main-image img {
        padding: 18px;
    }
}

/* ========================================
   Product Archive Refinements
   ======================================== */
.ht-products-archive .ht-filter-buttons {
    gap: 10px;
}

.ht-products-archive .ht-product-filters {
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    padding: 22px 24px;
    margin-bottom: 30px;
    border: 1px solid #e6edf5;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(18, 39, 63, 0.06);
}

.ht-products-archive .ht-filter-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 160px;
    gap: 12px !important;
}

.ht-products-archive .ht-filter-group--category {
    flex: 1 1 100%;
    flex-wrap: wrap;
}

.ht-products-archive .ht-filter-group--category .ht-filter-buttons {
    justify-content: center;
}

.ht-products-archive .ht-filter-group--actions {
    min-width: 0;
}

.ht-products-archive .ht-filter-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;
    flex: 0 0 auto;
}

.ht-products-archive .ht-filter-group--brand,
.ht-products-archive .ht-filter-group--search,
.ht-products-archive .ht-filter-group--actions {
    flex: 0 0 auto;
}

.ht-products-archive .ht-filter-btn,
.ht-products-archive .ht-filter-select,
.ht-filter-search,
.ht-filter-reset {
    border-radius: 999px;
}

.ht-filter-search,
.ht-products-archive .ht-filter-select {
    min-width: 220px;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid #d6dee9;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.ht-filter-search:focus,
.ht-products-archive .ht-filter-select:focus {
    outline: none;
    border-color: #c41230;
    box-shadow: 0 0 0 4px rgba(196, 18, 48, 0.08);
}

.ht-filter-reset {
    min-height: 48px;
    padding: 0.75rem 1.25rem;
    border: 1px solid #d6dee9;
    background: #fff;
    color: #17304d;
    font-weight: 600;
    cursor: pointer;
}

.ht-filter-reset:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.ht-product-card.is-hidden {
    display: none !important;
}

.ht-products-archive .ht-product-card {
    border: 1px solid #e8edf4;
    box-shadow: 0 18px 50px rgba(18, 39, 63, 0.08);
}

.ht-products-archive .ht-product-content {
    padding: 22px;
}

.ht-products-archive .ht-product-title {
    font-size: 1.1rem;
    line-height: 1.35;
}

.ht-products-archive .ht-product-excerpt {
    min-height: 4.2em;
}

/* ========================================
   Single Product Enhancements
   ======================================== */
.ht-product-main-image {
    cursor: zoom-in;
    display: block;
}

.ht-product-main-image img {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.ht-product-main-image.is-zooming img {
    transform: scale(1.9);
}

.ht-product-image-placeholder--hero {
    width: 100%;
    min-height: 420px;
}

.ht-product-thumbnails button.ht-product-thumbnail {
    appearance: none;
    background: transparent;
    padding: 0;
    border: 2px solid transparent;
}

.ht-product-thumbnails button.ht-product-thumbnail.active,
.ht-product-thumbnails button.ht-product-thumbnail:hover {
    border-color: var(--color-primary);
}

.ht-product-meta--chips {
    flex-wrap: wrap;
}

.ht-product-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: #f5f7fa;
    color: #44546a;
    font-size: 0.9rem;
}

.ht-product-video-card {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #e8edf4;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(18, 39, 63, 0.06);
}

.ht-products-pagination ul {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ht-products-pagination li {
    margin: 0;
}

.ht-products-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #d6dee9;
    background: #fff;
    color: #17304d;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(18, 39, 63, 0.06);
}

.ht-pagination-icon {
    font-size: 1.3rem;
    line-height: 1;
    font-weight: 700;
}

.ht-products-pagination ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ht-products-pagination .prev .page-numbers,
.ht-products-pagination .next .page-numbers {
    width: 48px;
    min-width: 48px;
    padding: 0;
}

.ht-products-pagination .page-numbers.current,
.ht-products-pagination .page-numbers:hover {
    background: #c41230;
    border-color: #c41230;
    color: #fff;
}

.ht-related-products {
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.ht-section-header--related {
    align-items: center;
    text-align: center;
    margin-bottom: 36px;
}

.ht-related-products .ht-section-title {
    font-size: clamp(1.9rem, 2.4vw, 2.5rem);
}

.ht-related-products .ht-section-subtitle {
    max-width: 720px;
    color: #607289;
}

.ht-related-products .ht-product-card {
    border-radius: 22px;
    border: 1px solid #e6edf5;
    box-shadow: 0 20px 46px rgba(18, 39, 63, 0.07);
}

.ht-related-products .ht-product-image-wrapper {
    padding-top: 68%;
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.ht-related-products .ht-product-content {
    padding: 24px;
}

.ht-related-products .ht-product-category {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(23, 48, 77, 0.08);
    color: #17304d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ht-related-products .ht-product-title {
    font-size: 1.05rem;
    line-height: 1.45;
    margin-bottom: 10px;
}

.ht-related-products .ht-product-excerpt {
    font-size: 0.92rem;
    color: #607289;
    line-height: 1.7;
    min-height: 4.8em;
}

.post-type-archive-news .ht-product-grid {
    gap: 24px;
}

.post-type-archive-news .ht-product-card {
    border-radius: 24px;
    border: 1px solid #e6edf5;
    box-shadow: 0 20px 46px rgba(18, 39, 63, 0.07);
}

.post-type-archive-news .ht-product-content {
    padding: 24px;
}

.post-type-archive-news .ht-product-meta {
    gap: 8px;
    margin-bottom: 12px;
}

.post-type-archive-news .ht-product-meta span {
    font-size: 0.74rem;
    letter-spacing: 0.05em;
}

.post-type-archive-news .ht-product-title {
    font-size: 1.18rem;
    line-height: 1.45;
    margin-bottom: 10px;
}

.post-type-archive-news .ht-product-excerpt {
    font-size: 0.96rem;
    line-height: 1.8;
    color: #607289;
    min-height: 5.2em;
}

.post-type-archive-solutions .ht-product-grid {
    gap: 24px;
}

.post-type-archive-solutions .ht-product-card {
    border-radius: 24px;
    border: 1px solid #e6edf5;
    box-shadow: 0 20px 46px rgba(18, 39, 63, 0.07);
}

.post-type-archive-solutions .ht-product-content {
    padding: 24px;
}

.post-type-archive-solutions .ht-product-meta {
    gap: 8px;
    margin-bottom: 12px;
}

.post-type-archive-solutions .ht-product-meta span {
    font-size: 0.74rem;
    letter-spacing: 0.05em;
}

.post-type-archive-solutions .ht-product-title {
    font-size: 1.18rem;
    line-height: 1.45;
    margin-bottom: 10px;
}

.post-type-archive-solutions .ht-product-excerpt {
    font-size: 0.96rem;
    line-height: 1.8;
    color: #607289;
    min-height: 5.2em;
}

.post-type-archive-solutions .ht-product-subtitle {
    font-size: 0.9rem;
    color: #17304d;
    font-weight: 600;
    margin-bottom: 12px;
}

/* ========================================
   Resource Single Pages
   ======================================== */
.ht-resource-single-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    gap: 28px;
    align-items: start;
}

.ht-resource-article {
    padding: 32px;
    border-radius: 24px;
}

.ht-resource-meta-row {
    margin-bottom: 18px;
}

.ht-resource-featured-media {
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #e3ebf5;
    box-shadow: 0 18px 46px rgba(18, 39, 63, 0.08);
}

.ht-resource-featured-media img {
    display: block;
    width: 100%;
    height: auto;
}

.ht-resource-highlight {
    margin-bottom: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(196, 18, 48, 0.08), rgba(23, 48, 77, 0.08));
    color: #17304d;
    border: 1px solid rgba(196, 18, 48, 0.12);
}

.ht-resource-summary {
    margin-bottom: 24px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #f7f9fc;
    border: 1px solid #e7eef6;
    color: #4d6077;
    line-height: 1.8;
}

.ht-resource-summary p:last-child,
.ht-resource-body > *:last-child {
    margin-bottom: 0;
}

.ht-resource-body {
    color: #415065;
    line-height: 1.85;
}

.ht-resource-sidebar {
    position: sticky;
    top: 120px;
}

.ht-resource-panel {
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e3ebf5;
    box-shadow: 0 20px 46px rgba(18, 39, 63, 0.08);
}

.ht-resource-panel h3 {
    margin-bottom: 18px;
    color: #17304d;
    font-size: 1.3rem;
}

.ht-resource-facts {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ht-resource-facts li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
}

.ht-resource-facts strong {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8b97a7;
}

.ht-resource-facts span {
    color: #17304d;
    line-height: 1.55;
}

.ht-resource-panel-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ht-resource-panel-actions a {
    width: 100%;
    justify-content: center;
}

@media (max-width: 992px) {
    .ht-resource-single-grid {
        grid-template-columns: 1fr;
    }

    .ht-resource-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .ht-resource-article,
    .ht-resource-panel {
        padding: 20px;
        border-radius: 18px;
    }
}

/* ========================================
   About & Contact Delivery Polish
   ======================================== */
.ht-section-header--center {
    align-items: center;
    text-align: center;
}

.ht-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 30px;
    align-items: start;
}

.ht-about-article {
    padding: 30px;
    border-radius: 24px;
}

.ht-about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ht-about-media-card {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #e3ebf5;
    background: #fff;
    box-shadow: 0 20px 46px rgba(18, 39, 63, 0.08);
}

.ht-about-media-card img {
    display: block;
    width: 100%;
    height: auto;
}

.ht-about-stats {
    display: grid;
    gap: 14px;
}

.ht-about-stat-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e6edf5;
    box-shadow: 0 14px 32px rgba(18, 39, 63, 0.06);
}

.ht-about-stat-card strong {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8b97a7;
}

.ht-about-stat-card span {
    color: #17304d;
    line-height: 1.6;
    font-weight: 600;
}

.ht-about-pillars {
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.ht-about-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.ht-about-pillar-card {
    padding: 28px 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e6edf5;
    box-shadow: 0 18px 40px rgba(18, 39, 63, 0.06);
}

.ht-about-pillar-card h3 {
    margin-bottom: 12px;
    color: #17304d;
    font-size: 1.18rem;
}

.ht-about-pillar-card p {
    margin: 0;
    color: #607289;
    line-height: 1.8;
}

.ht-contact-section .ht-contact-info,
.ht-contact-section .ht-contact-form-wrapper {
    border-radius: 24px;
    border: 1px solid #e6edf5;
}

.ht-contact-section .ht-contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: start;
}

.ht-contact-section .ht-contact-info {
    background: linear-gradient(160deg, #17304d 0%, #0f1f33 100%);
    font-size: 1rem !important;
    line-height: 1.7 !important;
    white-space: normal !important;
}

.ht-contact-section .ht-contact-info h2,
.ht-contact-section .ht-contact-info h4,
.ht-contact-section .ht-contact-social h4 {
    color: #fff;
}

.ht-contact-section .ht-contact-description,
.ht-contact-section .ht-contact-content p,
.ht-contact-section .ht-contact-content a {
    color: rgba(255, 255, 255, 0.82);
}

.ht-contact-section .ht-contact-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ht-contact-section .ht-contact-item:last-child {
    border-bottom: 0;
}

.ht-contact-section .ht-contact-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    box-shadow: none;
}

.ht-contact-section .ht-contact-form-wrapper {
    box-shadow: 0 24px 60px rgba(18, 39, 63, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    width: 100%;
}

.ht-contact-section .ht-form-title {
    color: #17304d;
    font-size: 2rem;
    line-height: 1.25;
}

.ht-contact-section .ht-form-description {
    color: #607289;
    font-size: 0.98rem;
    line-height: 1.75;
}

.ht-contact-section .ht-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.ht-contact-section .ht-form-row {
    margin-bottom: 0;
    gap: 18px;
}

.ht-contact-section .ht-form-group {
    gap: 8px;
}

.ht-contact-section .ht-contact-title,
.ht-contact-section .ht-contact-description,
.ht-contact-section .ht-contact-content,
.ht-contact-section .ht-contact-social,
.ht-contact-section .ht-contact-item,
.ht-contact-section .ht-form-group,
.ht-contact-section .ht-form-label {
    white-space: normal !important;
}

.ht-contact-section .ht-contact-content h4 {
    font-size: 1.06rem;
    line-height: 1.35;
}

.ht-contact-section .ht-contact-content p,
.ht-contact-section .ht-contact-content a,
.ht-contact-section .ht-contact-description {
    font-size: 0.95rem;
}

.ht-contact-section .ht-form-input,
.ht-contact-section .ht-form-select,
.ht-contact-section .ht-form-textarea,
.ht-contact-section .ht-captcha-input {
    width: 100%;
    min-height: 52px;
    padding: 0.9rem 1rem;
    border: 1px solid #d8e1ec;
    border-radius: 16px;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.ht-contact-section .ht-form-textarea {
    min-height: 180px;
    resize: vertical;
}

.ht-contact-section .ht-form-input:focus,
.ht-contact-section .ht-form-select:focus,
.ht-contact-section .ht-form-textarea:focus,
.ht-contact-section .ht-captcha-input:focus {
    outline: none;
    border-color: #c41230;
    box-shadow: 0 0 0 4px rgba(196, 18, 48, 0.08);
}

.ht-contact-section .ht-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ht-contact-section .ht-form-checkbox input {
    margin-top: 3px;
}

.ht-contact-section .ht-captcha-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ht-contact-section .ht-captcha-question {
    font-weight: 700;
    color: #17304d;
}

.ht-contact-section .ht-captcha-input {
    max-width: 180px;
}

.ht-contact-section .ht-submit-btn {
    width: 100%;
    min-height: 56px;
    border-radius: 16px;
}

.ht-contact-section .ht-contact-form-header {
    margin-bottom: 24px;
}

.ht-contact-section .ht-form-title {
    margin-bottom: 10px;
}

.ht-contact-section .ht-form-description {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #5b6472;
}

.ht-map-container,
.ht-google-map,
.ht-google-map iframe {
    width: 100%;
    border-radius: 24px;
    overflow: visible;
}

.ht-map-section {
    background: var(--color-gray-100);
}

.ht-quick-contact {
    background: linear-gradient(135deg, #111827 0%, #17304d 100%);
}

.ht-quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.ht-quick-contact-card {
    padding: 28px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    backdrop-filter: blur(10px);
}

.ht-quick-contact-card h3 {
    margin: 14px 0 8px;
    color: #fff;
}

.ht-quick-contact-card p {
    color: rgba(255, 255, 255, 0.78);
    min-height: 2.8em;
}

.ht-quick-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.ht-cta-buttons .btn-primary,
.ht-cta-buttons .btn-secondary,
.ht-product-footer .btn-primary,
.ht-product-footer .btn-secondary,
.ht-product-content > .btn-primary,
.ht-product-content > .btn-secondary,
.ht-resource-panel-actions .btn-primary,
.ht-resource-panel-actions .btn-secondary,
.ht-quick-contact-card .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(18, 39, 63, 0.12);
}

.ht-cta-buttons .btn-primary,
.ht-product-footer .btn-primary,
.ht-product-content > .btn-primary,
.ht-resource-panel-actions .btn-primary,
.ht-quick-contact-card .btn-primary {
    background: linear-gradient(135deg, #d11a39 0%, #a60d26 100%);
    color: #fff;
    border: 0;
}

.ht-cta-buttons .btn-secondary,
.ht-product-footer .btn-secondary,
.ht-product-content > .btn-secondary,
.ht-resource-panel-actions .btn-secondary {
    background: #fff;
    color: #17304d;
    border: 1px solid #d6dee9;
}

.ht-cta-buttons .btn-primary:hover,
.ht-product-footer .btn-primary:hover,
.ht-product-content > .btn-primary:hover,
.ht-resource-panel-actions .btn-primary:hover,
.ht-quick-contact-card .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(166, 13, 38, 0.22);
}

.ht-cta-buttons .btn-secondary:hover,
.ht-product-footer .btn-secondary:hover,
.ht-product-content > .btn-secondary:hover,
.ht-resource-panel-actions .btn-secondary:hover {
    border-color: #c41230;
    color: #c41230;
}

.ht-product-actions {
    display: none;
}

.ht-cta-buttons {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ht-cta-buttons .btn-primary,
.ht-cta-buttons .btn-secondary,
.ht-product-footer .btn-primary,
.ht-product-footer .btn-secondary,
.ht-resource-panel-actions .btn-primary,
.ht-resource-panel-actions .btn-secondary,
.ht-quick-contact-card .btn-primary,
.post-type-archive-news .ht-product-btn {
    min-width: 168px;
}

.post-type-archive-news .ht-product-title {
    font-size: 1.18rem;
    line-height: 1.45;
    margin-bottom: 12px;
}

.post-type-archive-news .ht-product-excerpt {
    font-size: 0.96rem;
    line-height: 1.75;
    min-height: 84px;
    color: #5b6472;
}

.post-type-archive-downloads .ht-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.post-type-archive-downloads .ht-product-filters {
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    padding: 0;
    margin-bottom: 28px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.post-type-archive-downloads .ht-filter-group {
    min-width: 0;
}

.post-type-archive-downloads .ht-product-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e5edf6;
    box-shadow: 0 18px 46px rgba(18, 39, 63, 0.08);
}

.post-type-archive-downloads .ht-product-image-wrapper {
    padding-top: 62%;
    background: linear-gradient(160deg, #edf3f8 0%, #d8e4ef 100%);
}

.post-type-archive-downloads .ht-product-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
}

.post-type-archive-downloads .ht-product-title {
    font-size: 1.28rem;
    line-height: 1.4;
    margin-bottom: 2px;
}

.post-type-archive-downloads .ht-product-title a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-type-archive-downloads .ht-product-excerpt {
    color: #5b6472;
    font-size: 0.96rem;
    line-height: 1.72;
    min-height: 52px;
}

.post-type-archive-downloads .ht-product-footer {
    margin-top: auto;
}

.post-type-archive-downloads .ht-product-footer .btn-primary,
.post-type-archive-downloads .ht-product-footer .btn-secondary {
    min-width: 148px;
}

@media (max-width: 992px) {
    .ht-about-grid,
    .ht-about-pillar-grid,
    .ht-quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .ht-contact-section .ht-contact-grid {
        grid-template-columns: 1fr;
    }

    .post-type-archive-downloads .ht-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ht-products-archive .ht-product-filters {
        align-items: stretch;
    }

    .ht-products-archive .ht-filter-group {
        width: 100%;
        flex-direction: column;
    }

    .ht-filter-search,
    .ht-products-archive .ht-filter-select {
        min-width: 100%;
    }
}

@media (max-width: 640px) {
    .post-type-archive-downloads .ht-product-grid {
        grid-template-columns: 1fr;
    }
}

.ht-product-video-head .ht-section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8b97a7;
    margin-bottom: 4px;
}

.ht-product-video-head h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #17304d;
}

.ht-product-video-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #0f172a;
}

.ht-product-video-frame video,
.ht-product-video-frame iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.ht-product-excerpt--summary {
    margin-top: 6px;
}

.ht-product-lightbox[hidden] {
    display: none;
}

.ht-product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 4000;
}

.ht-product-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.ht-product-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 1100px);
    margin: 4vh auto 0;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.ht-product-lightbox-dialog img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 82vh;
    object-fit: contain;
    background: #0f172a;
}

.ht-product-lightbox-caption {
    padding: 14px 18px 18px;
    color: #415065;
    font-size: 0.95rem;
}

.ht-product-lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 24px;
    line-height: 40px;
    cursor: pointer;
}

body.ht-lightbox-open {
    overflow: hidden;
}

@media (max-width: 992px) {
    .ht-product-lightbox-dialog {
        width: 94vw;
        margin-top: 8vh;
    }
}

/* ========================================
   Homepage Hero Refresh
   ======================================== */
.page-template-home .hero {
    min-height: calc(100vh - 80px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0b1624 0%, #10253f 45%, #0a0f18 100%);
}

.page-template-home .hero-overlay {
    background: linear-gradient(90deg, rgba(4, 10, 18, 0.76) 0%, rgba(4, 10, 18, 0.5) 48%, rgba(4, 10, 18, 0.72) 100%);
}

.page-template-home .hero-content-split {
    position: relative;
    z-index: 3;
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 32px;
    align-items: center;
    text-align: left;
    color: #fff;
}

.page-template-home .hero-content .hero-title,
.page-template-home .hero .hero-title {
    color: #ffffff !important;
    text-shadow: none !important;
    animation: none !important;
}

.page-template-home .hero-copy {
    max-width: 720px;
}

.page-template-home .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-template-home .hero-title {
    max-width: 16ch;
    margin: 0 0 20px;
    font-size: clamp(2.7rem, 5vw, 4.9rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.page-template-home .hero-subtitle {
    max-width: 62ch;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.02rem, 1.55vw, 1.18rem);
}

.page-template-home .hero-cta {
    justify-content: flex-start;
    margin-bottom: 18px;
}

.page-template-home .hero-support-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-template-home .hero-support-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    backdrop-filter: blur(10px);
}

.page-template-home .hero-panel {
    position: relative;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.page-template-home .hero-panel-top {
    margin-bottom: 18px;
}

.page-template-home .hero-panel-label {
    display: inline-flex;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.page-template-home .hero-panel h2 {
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
}

.page-template-home .hero-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.page-template-home .hero-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.page-template-home .hero-panel-item {
    padding: 16px;
    border-radius: 20px;
    background: rgba(7, 12, 20, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-template-home .hero-panel-item strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 1rem;
}

.page-template-home .hero-panel-item span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.5;
}

.page-template-home .scroll-indicator {
    display: none;
}

@media (max-width: 1024px) {
    .page-template-home .hero {
        min-height: auto;
        padding: 120px 0 72px;
    }

    .page-template-home .hero-content-split {
        grid-template-columns: 1fr;
        width: min(100%, calc(100% - 32px));
    }

    .page-template-home .hero-title {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .page-template-home .hero-content-split {
        width: min(100%, calc(100% - 24px));
        gap: 18px;
    }

    .page-template-home .hero-panel {
        padding: 20px;
        border-radius: 22px;
    }

    .page-template-home .hero-panel-grid {
        grid-template-columns: 1fr;
    }

    .page-template-home .hero-cta,
    .page-template-home .hero-support-list {
        width: 100%;
    }

    .page-template-home .hero-cta .btn,
    .page-template-home .hero-support-pill {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Homepage Mid-section Polish
   ======================================== */
.page-template-home .stats {
    padding: 72px 0;
}

.page-template-home .stat-item {
    padding: 20px 12px;
}

.page-template-home .about {
    min-height: 640px;
}

.page-template-home .about-image {
    background: linear-gradient(135deg, #243f67 0%, #2f4b77 100%);
}

.page-template-home .about-image > div,
.page-template-home .about-image img {
    width: 100%;
    height: 100%;
}

.page-template-home .about-content {
    padding: 64px 72px;
}

.page-template-home .about-content h2 {
    margin-bottom: 22px;
}

.page-template-home .about-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: #5e6c80;
}

.page-template-home .features {
    padding: 110px 0;
    background: linear-gradient(180deg, #171717 0%, #1f1f1f 100%);
}

.page-template-home .features-header h2,
.page-template-home .technology-content h2 {
    color: #ffffff;
}

.page-template-home .features-header p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.02rem;
}

.page-template-home .feature-card {
    min-height: 320px;
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.06);
}

.page-template-home .feature-card p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

.page-template-home .technology {
    padding: 96px 0 110px;
    background: linear-gradient(135deg, #203654 0%, #182636 50%, #151515 100%);
}

.page-template-home .technology-content {
    max-width: 1120px;
}

.page-template-home .technology-content > p {
    max-width: 780px;
    margin: 0 auto 42px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
}

.page-template-home .technology-features {
    align-items: stretch;
}

.page-template-home .tech-feature {
    min-height: 280px;
    padding: 34px 28px;
    background: rgba(255, 255, 255, 0.1);
}

.page-template-home .tech-feature p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
}

@media (max-width: 992px) {
    .page-template-home .about-content {
        padding: 40px 28px;
    }

    .page-template-home .about {
        min-height: auto;
    }

    .page-template-home .feature-card,
    .page-template-home .tech-feature {
        min-height: auto;
    }
}

/* ========================================
   Content System Polishing
   ======================================== */
.ht-section-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.ht-section-header .ht-section-title {
    margin: 0;
    color: var(--color-dark);
}

.ht-section-header .ht-section-subtitle {
    margin: 0;
    max-width: 44rem;
    color: var(--color-gray-600);
    font-size: 1rem;
}

.ht-page-header-content .ht-breadcrumb {
    margin-top: 1rem;
}

.ht-product-meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    background: rgba(26, 54, 93, 0.08);
    color: var(--color-accent);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.entry-content.ht-product-content {
    background: var(--color-white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-100);
}

.entry-content.ht-product-content p {
    color: var(--color-gray-700);
}

.entry-content.ht-product-content .ht-product-actions {
    flex-wrap: wrap;
}

.ht-no-products {
    grid-column: 1 / -1;
}

.ht-no-products-content {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-white);
    border-radius: 18px;
    border: 1px solid var(--color-gray-100);
    box-shadow: var(--shadow-sm);
}

.ht-no-products-content .dashicons {
    display: inline-flex;
    margin-bottom: 1rem;
    font-size: 2rem;
    width: 2rem;
    height: 2rem;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .ht-product-filters {
        align-items: flex-start;
    }

    .ht-filter-group {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .entry-content.ht-product-content {
        padding: 1.25rem;
    }

    .ht-product-meta {
        flex-wrap: wrap;
    }

    .ht-product-footer,
    .ht-product-actions {
        flex-direction: column;
    }
}

/* Adjust hero background position to cover full width */
.hero-background {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
}

/* Ensure header top height is respected */
.ht-header-top {
    height: 30px !important;
    box-sizing: border-box !important;
    padding: 0 !important;
}

/* ========================================
   Hero Title Glow Effect
   ======================================== */
.hero-content .hero-title,
.hero .hero-title {
    color: #00aaff !important;
    text-shadow: 
        0 0 10px rgba(0, 170, 255, 0.9),
        0 0 20px rgba(0, 170, 255, 0.8),
        0 0 30px rgba(0, 170, 255, 0.7),
        0 0 40px rgba(0, 100, 255, 0.5),
        0 0 70px rgba(0, 100, 255, 0.3),
        0 4px 30px rgba(0, 0, 0, 0.3);
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    from {
        text-shadow: 
            0 0 10px rgba(0, 170, 255, 0.9),
            0 0 20px rgba(0, 170, 255, 0.8),
            0 0 30px rgba(0, 170, 255, 0.7),
            0 0 40px rgba(0, 100, 255, 0.5),
            0 0 70px rgba(0, 100, 255, 0.3),
            0 4px 30px rgba(0, 0, 0, 0.3);
    }
    to {
        text-shadow: 
            0 0 10px rgba(0, 170, 255, 1),
            0 0 20px rgba(0, 170, 255, 0.9),
            0 0 30px rgba(0, 170, 255, 0.8),
            0 0 50px rgba(0, 100, 255, 0.7),
            0 0 80px rgba(0, 100, 255, 0.5),
            0 4px 30px rgba(0, 0, 0, 0.3);
    }
}

/* Further reduce language switcher size */
.ht-lang-switcher-top .trp-ls-floater {
    padding: 0 4px !important;
}

.ht-lang-switcher-top .trp-ls-floater .trp-floater-current-language img {
    width: 12px !important;
    height: 9px !important;
}

.ht-lang-switcher-top .trp-ls-floater .trp-floater-current-language {
    font-size: 0.7rem !important;
}

/* Make dropdown menu more compact */
.ht-lang-switcher-top .trp-ls-popup {
    min-width: 100px !important;
    padding: 4px 0 !important;
}

.ht-lang-switcher-top .trp-ls-popup a {
    padding: 4px 8px !important;
    font-size: 0.7rem !important;
}

.ht-lang-switcher-top .trp-ls-popup a img {
    width: 12px !important;
    height: 9px !important;
    margin-right: 4px !important;
}

/* ========================================
   Hero Full Width Fix
   ======================================== */
.hero {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
}
.hero-background {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}
.hero-background img {
    width: 100% !important;
    margin-left: 0 !important;
}

.ht-google-map {
    height: 450px;
}

.ht-map-container {
    height: 100%;
}

.ht-google-map iframe {
    height: 100%;
}

/* Ensure pagination is horizontal */
.ht-products-pagination {
    flex-direction: row !important;
}

/* Responsive product grid */
@media (max-width: 1199px) {
    .ht-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .ht-products-archive .ht-product-grid--archive {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .ht-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ht-products-archive .ht-product-grid--archive {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .ht-product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .ht-products-archive .ht-product-grid--archive {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Active menu item */
.ht-nav-list li.active > a,
.ht-mobile-nav li.active > a {
    color: var(--theme-palette-color-2, #1559ed) !important;
    font-weight: 700;
}

/* Active menu item when header is scrolled */
.ht-header.scrolled .ht-nav-list li.active > a,
.ht-header.scrolled .ht-mobile-nav li.active > a {
    color: var(--theme-palette-color-2, #1559ed) !important;
    font-weight: 700;
}

.ht-no-content {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.ht-no-content p {
    font-size: 1.1rem;
    color: var(--color-gray-500);
    margin-bottom: var(--spacing-md);
}

.ht-no-content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 18, 48, 0.3);
}

.ht-no-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 18, 48, 0.4);
    color: var(--color-white);
}

.ht-no-content .btn-primary::before {
    content: '+';
    font-size: 1.2rem;
    font-weight: 700;
}

#downloads .ht-no-content .btn-primary::before {
    content: '↓';
    font-size: 1rem;
}
