body {
    font-family: var(--xit-font-base);
}

/*UTILITY CLASSES*/

.xit-page-background {
    background: var(--xit-color-page-bg);
}

.xit-bg-base-mix {
    background-color: color-mix(in srgb, var(--xit-color-base) 5%, transparent);
}

.xit-bg-brand {
    background: var(--xit-color-brand);
}

.xit-text-base {
    color: var(--xit-color-base);
}

.xit-text-primary {
    color: var(--xit-color-primary);
}

.xit-text-link-base {
    color: var(--xit-color-brand);
}

.xit-fw-title {
    font-weight: var(--xit-fw-title);
}

.xit-text-on-brand {
    color: var(--xit-color-on-brand);
}

.xit-text-sub {
    color: color-mix(in srgb, var(--xit-color-base) 65%, var(--xit-color-page-bg));
}


.xit-fs-paragraph {
    font-size: var(--xit-fs-paragraph);
}

.xit-fs-title {
    font-size: var(--xit-fs-title);
}

.xit-border-sub-0 {
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 65%, var(--xit-color-page-bg));
}

.xit-border-primary {
    border: 1px solid var(--xit-color-primary);
}

/* ===========================
   XIT FORM STYLES
   =========================== */

/* Form Container */
.xit-form {
    max-width: 100%;
}

/* Form Group */
.xit-form-group {
    margin-bottom: 1.5rem;
}

/* Labels */
.xit-form label,
.xit-form-label {
    display: block;
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-base);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.xit-form label.required::after,
.xit-form-label.required::after {
    content: ' *';
    color: var(--xit-color-danger);
}

/* Help Text */
.xit-form .helptext,
.xit-form-help {
    display: block;
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 65%, transparent);
    margin-top: 0.35rem;
    line-height: 1.4;
}

/* Text Inputs */
.xit-form input[type="text"],
.xit-form input[type="email"],
.xit-form input[type="password"],
.xit-form input[type="number"],
.xit-form input[type="tel"],
.xit-form input[type="url"],
.xit-form input[type="date"],
.xit-form input[type="time"],
.xit-form input[type="datetime-local"],
.xit-form input[type="search"],
.xit-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--xit-fs-paragraph);
    font-weight: 400;
    line-height: 1.5;
    color: var(--xit-color-base);
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 20%, transparent);
    border-radius: var(--xit-button-radius);
    transition: all 0.3s ease;
    appearance: none;
}

.xit-form input[type="text"]:focus,
.xit-form input[type="email"]:focus,
.xit-form input[type="password"]:focus,
.xit-form input[type="number"]:focus,
.xit-form input[type="tel"]:focus,
.xit-form input[type="url"]:focus,
.xit-form input[type="date"]:focus,
.xit-form input[type="time"]:focus,
.xit-form input[type="datetime-local"]:focus,
.xit-form input[type="search"]:focus,
.xit-form-input:focus {
    outline: none;
    border-color: var(--xit-color-brand);
    background: var(--xit-color-page-bg);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--xit-color-brand) 10%, transparent);
}

.xit-form input::placeholder {
    color: color-mix(in srgb, var(--xit-color-base) 50%, transparent);
}

/* Select Dropdown */
.xit-form select,
.xit-form-select {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    font-size: var(--xit-fs-paragraph);
    font-weight: 400;
    line-height: 1.5;
    color: var(--xit-color-base);
    background: var(--xit-color-page-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 14px;
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 20%, transparent);
    border-radius: var(--xit-button-radius);
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
}

.xit-form select:focus,
.xit-form-select:focus {
    outline: none;
    border-color: var(--xit-color-brand);
    background-color: var(--xit-color-page-bg);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--xit-color-brand) 10%, transparent);
}

/* Textarea */
.xit-form textarea,
.xit-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--xit-fs-paragraph);
    font-weight: 400;
    line-height: 1.6;
    color: var(--xit-color-base);
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 20%, transparent);
    border-radius: var(--xit-button-radius);
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.xit-form textarea:focus,
.xit-form-textarea:focus {
    outline: none;
    border-color: var(--xit-color-brand);
    background: var(--xit-color-page-bg);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--xit-color-brand) 10%, transparent);
}

/* Checkbox */
.xit-form input[type="checkbox"],
.xit-form-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    border: 2px solid color-mix(in srgb, var(--xit-color-base) 30%, transparent);
    border-radius: 4px;
    background: var(--xit-color-page-bg);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    position: relative;
    vertical-align: middle;
}

.xit-form input[type="checkbox"]:checked {
    background: var(--xit-color-brand);
    border-color: var(--xit-color-brand);
}

.xit-form input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--xit-color-on-brand);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.xit-form input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--xit-color-brand) 10%, transparent);
}

/* Radio Button */
.xit-form input[type="radio"],
.xit-form-radio {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    border: 2px solid color-mix(in srgb, var(--xit-color-base) 30%, transparent);
    border-radius: 50%;
    background: var(--xit-color-page-bg);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    position: relative;
    vertical-align: middle;
}

.xit-form input[type="radio"]:checked {
    border-color: var(--xit-color-brand);
}

.xit-form input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--xit-color-brand);
}

.xit-form input[type="radio"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--xit-color-brand) 10%, transparent);
}

/* Checkbox/Radio Label Wrapper */
.xit-form-check {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.xit-form-check label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 400;
}

/* File Input */
.xit-form input[type="file"],
.xit-form-file {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--xit-fs-paragraph);
    color: var(--xit-color-base);
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 20%, transparent);
    border-radius: var(--xit-button-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.xit-form input[type="file"]:focus,
.xit-form-file:focus {
    outline: none;
    border-color: var(--xit-color-brand);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--xit-color-brand) 10%, transparent);
}

.xit-form input[type="file"]::file-selector-button {
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    border: none;
    border-radius: var(--xit-button-radius);
    font-size: var(--xit-fs-subtitle);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.xit-form input[type="file"]::file-selector-button:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 90%, var(--xit-color-base));
}

/* Disabled State */
.xit-form input:disabled,
.xit-form select:disabled,
.xit-form textarea:disabled,
.xit-form-input:disabled,
.xit-form-select:disabled,
.xit-form-textarea:disabled {
    background: color-mix(in srgb, var(--xit-color-base) 5%, var(--xit-color-page-bg));
    color: color-mix(in srgb, var(--xit-color-base) 50%, transparent);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Readonly State */
.xit-form input[readonly],
.xit-form select[readonly],
.xit-form textarea[readonly] {
    background: color-mix(in srgb, var(--xit-color-base) 3%, var(--xit-color-page-bg));
    cursor: default;
}

/* Error State */
.xit-form-error input,
.xit-form-error select,
.xit-form-error textarea,
.xit-form input.error,
.xit-form select.error,
.xit-form textarea.error {
    border-color: var(--xit-color-danger);
}

.xit-form-error input:focus,
.xit-form-error select:focus,
.xit-form-error textarea:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.xit-form-error-message,
.xit-form .errorlist {
    display: block;
    font-size: var(--xit-fs-subtitle);
    color: var(--xit-color-danger);
    margin-top: 0.35rem;
    list-style: none;
    padding: 0;
}

.xit-form .errorlist li {
    margin-bottom: 0.25rem;
}

/* Success State */
.xit-form-success input,
.xit-form-success select,
.xit-form-success textarea,
.xit-form input.success,
.xit-form select.success,
.xit-form textarea.success {
    border-color: var(--xit-color-success);
}

.xit-form-success input:focus,
.xit-form-success select:focus,
.xit-form-success textarea:focus {
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

/* Form Row (Multiple inputs in one row) */
.xit-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Input Group (Icon + Input) */
.xit-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.xit-input-group-icon .xit-input-group-text {
    position: absolute;
    left: 1rem;
    color: color-mix(in srgb, var(--xit-color-base) 50%, transparent);
    pointer-events: none;
}

.xit-input-group input {
    padding-left: 2.75rem;
}

.xit-input-group-append {
    position: absolute;
    right: 1rem;
}

/* Submit Button */
.xit-form-submit,
.xit-form button[type="submit"],
.xit-form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-on-brand);
    background: var(--xit-color-brand);
    border: none;
    border-radius: var(--xit-button-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

.xit-form-submit:hover,
.xit-form button[type="submit"]:hover,
.xit-form input[type="submit"]:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 90%, var(--xit-color-base));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--xit-color-brand) 40%, transparent);
}

.xit-form-submit:active,
.xit-form button[type="submit"]:active,
.xit-form input[type="submit"]:active {
    transform: translateY(0);
}

.xit-form-submit:disabled,
.xit-form button[type="submit"]:disabled,
.xit-form input[type="submit"]:disabled {
    background: color-mix(in srgb, var(--xit-color-base) 30%, transparent);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Secondary Button */
.xit-form-cancel,
.xit-form button[type="button"],
.xit-form button[type="reset"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-base);
    background: color-mix(in srgb, var(--xit-color-base) 8%, var(--xit-color-page-bg));
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 20%, transparent);
    border-radius: var(--xit-button-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.xit-form-cancel:hover,
.xit-form button[type="button"]:hover,
.xit-form button[type="reset"]:hover {
    background: color-mix(in srgb, var(--xit-color-base) 12%, var(--xit-color-page-bg));
    border-color: var(--xit-color-base);
}

/* Form Actions (Button Group) */
.xit-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
}

/* Range Input */
.xit-form input[type="range"],
.xit-form-range {
    width: 100%;
    height: 6px;
    background: color-mix(in srgb, var(--xit-color-base) 15%, transparent);
    border-radius: 3px;
    outline: none;
    appearance: none;
}

.xit-form input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--xit-color-brand);
    cursor: pointer;
    transition: all 0.3s ease;
}

.xit-form input[type="range"]::-webkit-slider-thumb:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 90%, var(--xit-color-base));
    transform: scale(1.1);
}

.xit-form input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: var(--xit-color-brand);
    cursor: pointer;
    transition: all 0.3s ease;
}

.xit-form input[type="range"]::-moz-range-thumb:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 90%, var(--xit-color-base));
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .xit-form-row {
        grid-template-columns: 1fr;
    }

    .xit-form-actions {
        flex-direction: column;
    }

    .xit-form-submit,
    .xit-form-cancel {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .xit-form input,
    .xit-form select,
    .xit-form textarea {
        font-size: var(--xit-fs-subtitle);
        padding: 0.65rem 0.85rem;
    }

    .xit-form label {
        font-size: var(--xit-fs-subtitle);
    }
}

.xit-img-text-row,
.xit-img-text-col {
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    border-radius: var(--xit-card-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.xit-img-text-row-link,
.xit-img-text-col-link {
    text-decoration: none;
    color: inherit;
}

.xit-img-text-image {
    position: relative;
    overflow: hidden;
    background: color-mix(in srgb, var(--xit-color-base) 5%, var(--xit-color-page-bg));
}

.xit-img-text-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.xit-img-text-row:hover .xit-img-text-image img,
.xit-img-text-col:hover .xit-img-text-image img {
    transform: scale(1.05);
}

.xit-img-text-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: color-mix(in srgb, var(--xit-color-base) 25%, transparent);
}

.xit-img-text-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.xit-img-text-pre-title {
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 65%, transparent);
    font-weight: 500;
}

.xit-img-text-title {
    font-weight: var(--xit-fw-title);
    font-size: var(--xit-fs-title);
    color: var(--xit-color-brand);
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.xit-img-text-row:hover .xit-img-text-title,
.xit-img-text-col:hover .xit-img-text-title {
    color: var(--xit-color-primary);
}

.xit-img-text-desc {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 75%, transparent);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.xit-img-text-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-brand);
    transition: all 0.3s ease;
}

.xit-img-text-row:hover .xit-img-text-cta,
.xit-img-text-col:hover .xit-img-text-cta {
    gap: 0.75rem;
}

.xit-img-text-cta svg {
    transition: transform 0.3s ease;
}

.xit-img-text-row:hover .xit-img-text-cta svg,
.xit-img-text-col:hover .xit-img-text-cta svg {
    transform: translateX(4px);
}

.xit-img-text-row {
    box-shadow: 0 4px 20px color-mix(in srgb, var(--xit-color-base) 8%, transparent);
}

.xit-img-text-row:hover {
    box-shadow: 0 8px 32px color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    transform: translateY(-4px);
}

.xit-img-text-row-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.xit-img-text-row .xit-img-text-image {
    height: 400px;
}

.xit-img-text-row .xit-img-text-content {
    padding: 2.5rem;
    justify-content: center;
    gap: 1.25rem;
}

.xit-img-text-row .xit-img-text-cta {
    font-size: var(--xit-fs-title);
}

.xit-img-text-col {
    box-shadow: 0 2px 12px color-mix(in srgb, var(--xit-color-base) 6%, transparent);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.xit-img-text-col:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--xit-color-brand) 15%, transparent);
    border-color: color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

.xit-img-text-col-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.xit-img-text-col .xit-img-text-image {
    height: 220px;
    flex-shrink: 0;
}

.xit-img-text-col .xit-img-text-content {
    padding: 1.5rem;
    gap: 0.85rem;
    flex-grow: 1;
}

.xit-img-text-col .xit-img-text-desc {
    flex-grow: 1;
}

.xit-img-text-col .xit-img-text-cta {
    font-size: var(--xit-fs-paragraph);
    margin-top: auto;
}

.xit-cover-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: var(--xit-card-radius);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .xit-img-text-row-link {
        grid-template-columns: 1fr;
    }

    .xit-img-text-row .xit-img-text-image {
        height: 320px;
    }

    .xit-img-text-row .xit-img-text-content {
        padding: 2rem;
    }

    .xit-img-text-row .xit-img-text-title {
        font-size: var(--xit-fs-large);
    }
}

@media (max-width: 768px) {
    .xit-img-text-row .xit-img-text-image {
        height: 280px;
    }

    .xit-img-text-row .xit-img-text-content {
        padding: 1.5rem;
    }

    .xit-img-text-row .xit-img-text-title {
        font-size: var(--xit-fs-heading);
    }

    .xit-img-text-col .xit-img-text-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .xit-img-text-row .xit-img-text-image {
        height: 240px;
    }

    .xit-img-text-row .xit-img-text-content {
        padding: 1.25rem;
    }

    .xit-img-text-row .xit-img-text-title {
        font-size: var(--xit-fs-title);
    }

    .xit-img-text-row .xit-img-text-desc,
    .xit-img-text-row .xit-img-text-cta {
        font-size: var(--xit-fs-subtitle);
    }

    .xit-img-text-col .xit-img-text-image {
        height: 180px;
    }

    .xit-img-text-col .xit-img-text-content {
        padding: 1.25rem;
    }
}



/* Section Header Styles */
.section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-brand);
    margin: 0;
}

.section-title::before {
    content: "";
    width: 5px;
    height: 1.2em;
    background-color: var(--xit-color-brand);
    display: inline-block;
    border-radius: 2px;
}

.xit-divider {
    border: 0;
    height: 2px;
    margin-block: clamp(2rem, 6vw, 4rem);

    background: linear-gradient(to right,
            transparent,
            color-mix(in srgb, var(--xit-color-brand) 35%, transparent),
            transparent);

    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;

    transition:
        transform 1s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 900ms ease;
}

.xit-divider.is-visible {
    transform: scaleX(1);
    opacity: 1;
}


/* See All Link */
.see-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-brand);
    text-decoration: none;
    border: 1px solid color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
    border-radius: var(--xit-button-radius);
    transition: all 0.3s ease;
    background: color-mix(in srgb, var(--xit-color-brand) 3%, var(--xit-color-page-bg));
}

.see-all-link:hover {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    border-color: var(--xit-color-brand);
    transform: translateX(4px);
}

.see-all-link svg {
    transition: transform 0.3s ease;
}

.see-all-link:hover svg {
    transform: translateX(4px);
}

/* END UTILITY CLASSES*/

/*ELEMENT CLASSES*/


.top-navbar {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    font-size: var(--xit-fs-subtitle);
}

/* Content wrapper */
.top-navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
}

/* Left & right sections */
.top-navbar-left,
.top-navbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Links */
.top-navbar a {
    color: var(--xit-color-on-brand);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Hover effect */
.top-navbar a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

/* Staff panel link */
.top-navbar-right span {
    font-weight: var(--xit-fw-paragraph);
    letter-spacing: 0.2px;
}


/* =========================
   MAIN NAVBAR
   ========================= */

.main-navbar {
    background: var(--xit-color-on-brand);
    color: var(--xit-color-brand);
    border-bottom: 1px solid color-mix(in srgb,
            var(--xit-color-brand) 15%,
            transparent);
    box-shadow: 0 4px 10px color-mix(in srgb,
            var(--xit-color-brand) 15%,
            transparent);
    padding: 0px;
    z-index: 1030;

}

/* Brand */
.xit-navbar-brand {
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    text-decoration: none;
    text-transform: uppercase;
    padding: 8px 0px;
}

.xit-navbar-brand:hover {
    color: var(--xit-color-brand);
    opacity: 0.85;
}

/* Nav links */
.main-navbar .nav-link {
    position: relative;

    color: var(--xit-color-brand);
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);

    opacity: 0.9;
    background-color: transparent;

    transition:
        opacity 0.2s ease,
        background-color 0.25s ease;

    will-change: opacity;
}

/* Hover */
.main-navbar .nav-link:hover {
    opacity: 1;

    background-color: color-mix(in srgb,
            var(--xit-color-brand) 6%,
            var(--xit-color-on-brand));
}

/* Slide-in underline */
.main-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;
    background-color: var(--xit-color-brand);

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.main-navbar .nav-link:hover::after {
    transform: scaleX(1);
}




/* Separator */
.main-navbar .separator {
    color: color-mix(in srgb,
            var(--xit-color-brand) 65%,
            var(--xit-color-on-brand));
}

/* =========================
   SEARCH
   ========================= */

.main-search .form-control {
    background: var(--xit-color-on-brand);
    border: 1px solid color-mix(in srgb,
            var(--xit-color-brand) 8%,
            transparent);
    font-size: var(--xit-fs-paragraph);
    color: var(--xit-color-brand);
}

.main-search .form-control::placeholder {
    color: color-mix(in srgb,
            var(--xit-color-brand) 65%,
            var(--xit-color-on-brand));
}

.main-search .form-control:focus {
    border-color: var(--xit-color-brand);
    box-shadow: none;
}

.main-search .btn {
    background: transparent;
    border: 1px solid color-mix(in srgb,
            var(--xit-color-brand) 8%,
            transparent);
    border-left: none;
    color: var(--xit-color-brand);
}

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

.cart-link {
    position: relative;
}

.cart-badge {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 12px;
}

/*end nav bar*/

.hero-parent {
    height: 350px;
    /* Desktop height - change only here */
}

.hero-categories {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: 100%;
}

/* Hide scrollbar */
.hero-categories::-webkit-scrollbar {
    display: none;
}

/* Firefox */
.hero-categories {
    scrollbar-width: none;
}

.hero-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    text-decoration: none;
    color: var(--xit-color-base);
    font-size: var(--xit-fs-paragraph);
    font-Weight: var(--xit-fw-title);
    border-bottom: 1px solid color-mix(in srgb, var(--xit-color-base) 7%, transparent);
    transition: all 0.2s ease;
    position: relative;
    text-transform: capitalize;
}

.hero-cat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--xit-color-brand);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

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

.hero-cat-item:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 6%, var(--xit-color-page-bg));
    color: var(--xit-color-brand);
    padding-left: 1.4rem;
}

.hero-cat-item:hover::before {
    transform: scaleY(1);
}

.hero-cat-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-cat-arrow {
    flex-shrink: 0;
    color: color-mix(in srgb, var(--xit-color-base) 30%, transparent);
    transition: all 0.2s ease;
}

.hero-cat-item:hover .hero-cat-arrow {
    color: var(--xit-color-brand);
    transform: translateX(3px);
}



.hero-default-container {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: color-mix(in srgb, var(--xit-color-brand) 5%, var(--xit-color-page-bg));
    border-radius: var(--xit-card-radius);
    border: 1px solid color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--xit-color-base) 15%, transparent);
}

.hero-content {
    position: relative;
    height: 100%;
    z-index: 2;
}

.hero-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-scene.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-scene.previous {
    opacity: 0;
    transform: translateX(-100%);
}

.dh-scene-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

/* Scene 1: Introduction */
.dh-intro-scene {
    animation: fadeInUp 0.8s ease-out;
}

.dh-brand-header {
    margin-bottom: 1rem;
}

.dh-brand-icon {
    display: inline-block;
    width: 64px;
    height: 64px;
    background: var(--xit-color-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--xit-color-on-brand);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 16px color-mix(in srgb, var(--xit-color-brand) 40%, transparent);
}

.dh-brand-name {
    font-size: var(--xit-fs-large);
    font-weight: var(--xit-fw-large);
    color: var(--xit-color-brand);
    margin: 0;
    letter-spacing: -0.5px;
}

.dh-brand-tagline {
    font-size: var(--xit-fs-paragraph);
    color: var(--xit-color-base);
    opacity: 0.85;
    margin: 1rem 0;
    line-height: 1.6;
}

.dh-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--xit-color-accent);
    color: var(--xit-color-on-accent);
    border-radius: var(--xit-button-radius);
    font-size: var(--xit-fs-subtitle);
    font-weight: var(--xit-fw-title);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-accent) 30%, transparent);
}

/* Scene 2: Stats */
.dh-stats-scene {
    animation: scaleIn 0.8s ease-out;
}

.dh-scene-title {
    font-size: var(--xit-fs-heading);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin-bottom: 1.5rem;
}

.dh-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.dh-stat-item {
    background: color-mix(in srgb, var(--xit-color-brand) 3%, var(--xit-color-page-bg));
    padding: 1rem;
    border-radius: var(--xit-card-radius);
    border: 1px solid color-mix(in srgb, var(--xit-color-brand) 15%, transparent);
    box-shadow: 0 2px 12px color-mix(in srgb, var(--xit-color-base) 8%, transparent);
    animation: slideUp 0.6s ease-out backwards;
    animation-delay: var(--delay);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dh-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
}


.dh-stat-icon {
    color: var(--xit-color-primary);
    margin-bottom: 0.5rem;
}

.dh-stat-number {
    font-size: var(--xit-fs-heading);
    font-weight: var(--xit-fw-large);
    color: var(--xit-color-brand);
    margin: 0.3rem 0;
}

.dh-stat-label {
    font-size: var(--xit-fs-subtitle);
    color: var(--xit-color-base);
    opacity: 0.75;
}

/* Scene 3: Service */
.dh-service-scene {
    animation: fadeInScale 0.8s ease-out;
}

.dh-service-icon-large {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: color-mix(in srgb, var(--xit-color-primary) 50%, var(--xit-color-accent) 50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--xit-color-on-primary);
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 8px 24px color-mix(in srgb, var(--xit-color-primary) 30%, transparent);
}


.dh-service-title {
    font-size: var(--xit-fs-heading);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 1rem 0 0.5rem;
}

.dh-service-description {
    font-size: var(--xit-fs-paragraph);
    color: var(--xit-color-base);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.dh-service-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.dh-feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: color-mix(in srgb, var(--xit-color-primary) 8%, var(--xit-color-page-bg));
    border: 1px solid color-mix(in srgb, var(--xit-color-primary) 25%, transparent);
    border-radius: var(--xit-button-radius);
    font-size: var(--xit-fs-subtitle);
    color: var(--xit-color-base);
}

.dh-feature-badge svg {
    color: var(--xit-color-primary);
}

/* Scene 4: CTA */
.dh-cta-scene {
    animation: fadeIn 0.8s ease-out;
}

.dh-cta-title {
    font-size: var(--xit-fs-large);
    font-weight: var(--xit-fw-large);
    color: var(--xit-color-brand);
    margin-bottom: 0.5rem;
}

.dh-cta-description {
    font-size: var(--xit-fs-paragraph);
    color: var(--xit-color-base);
    opacity: 0.85;
    margin-bottom: 2rem;
}

.dh-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.dh-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--xit-button-radius);
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-base) 15%, transparent);
}

.dh-primary-btn {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
}

.dh-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--xit-color-brand) 40%, transparent);
    color: var(--xit-color-on-brand);
    background: color-mix(in srgb, var(--xit-color-brand) 90%, var(--xit-color-base));
}

.dh-secondary-btn {
    background: color-mix(in srgb, var(--xit-color-brand) 8%, var(--xit-color-page-bg));
    color: var(--xit-color-brand);
    border: 2px solid var(--xit-color-brand);
}

.dh-secondary-btn:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 15%, var(--xit-color-page-bg));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--xit-color-brand) 25%, transparent);
    color: var(--xit-color-brand);
}

/* Progress Indicators */
.dh-scene-progress {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.dh-progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--xit-color-base);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dh-progress-dot.active {
    opacity: 1;
    background: var(--xit-color-brand);
    transform: scale(1.3);
}

.dh-progress-dot:hover {
    opacity: 0.6;
}

/* Background Decorations */
.dh-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.dh-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: floatShape 20s ease-in-out infinite;
}

.dh-shape-1 {
    width: 200px;
    height: 200px;
    background: var(--xit-color-brand);
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.dh-shape-2 {
    width: 150px;
    height: 150px;
    background: var(--xit-color-primary);
    bottom: -30px;
    left: -30px;
    animation-delay: 5s;
}

.dh-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--xit-color-accent);
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

/* Banner Slides Styles */
.banner-slides-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: var(--xit-card-radius);
    background: color-mix(in srgb, var(--xit-color-base) 5%, var(--xit-color-page-bg));
}

/* Single Image */
.banner-single {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Slider Container */
.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.banner-slide.previous {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 0;
}

/* Banner Image */
.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Navigation Buttons */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: color-mix(in srgb, var(--xit-color-base) 60%, transparent);
    color: var(--xit-color-page-bg);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.banner-nav:hover {
    background: color-mix(in srgb, var(--xit-color-base) 80%, transparent);
    transform: translateY(-50%) scale(1.1);
}

.banner-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.banner-prev {
    left: 1rem;
}

.banner-next {
    right: 1rem;
}

/* Progress Indicators */
.banner-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.banner-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--xit-color-page-bg) 50%, transparent);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    backdrop-filter: blur(4px);
}

.banner-indicator:hover {
    background: color-mix(in srgb, var(--xit-color-page-bg) 70%, transparent);
    transform: scale(1.2);
}

.banner-indicator.active {
    background: var(--xit-color-brand);
    width: 24px;
    border-radius: 4px;
}

/* Accessibility */
.banner-nav:focus,
.banner-indicator:focus {
    outline: 2px solid var(--xit-color-brand);
    outline-offset: 2px;
}

/* Loading State */
.banner-image[loading="lazy"] {
    background: color-mix(in srgb, var(--xit-color-base) 10%, var(--xit-color-page-bg));
}


/*Product Card*/
/* Product Card Wrapper */
.product-card-wrapper {
    height: 100%;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--xit-color-page-bg);
    border-radius: var(--xit-product-card-radius);
    border-bottom-left-radius: min(var(--xit-product-card-radius), 20px);
    border-bottom-right-radius: min(var(--xit-product-card-radius), 20px);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--xit-color-base) 6%, transparent);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--xit-color-base) 15%, transparent);
    border-color: color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

/* Image Container */
.pc-image-container {
    position: relative;
    overflow: hidden;
    background: color-mix(in srgb, var(--xit-color-base) 3%, var(--xit-color-page-bg));
}

.pc-image-link {
    display: block;
    text-decoration: none;
}

.pc-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.pc-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.product-card:hover .pc-image {
    transform: scale(1.08);
}

.pc-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: color-mix(in srgb, var(--xit-color-base) 30%, transparent);
}

/* Badge */
.pc-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--xit-button-radius);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pc-badge-new {
    background: var(--xit-color-accent);
    color: var(--xit-color-on-accent);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--xit-color-accent) 40%, transparent);
}

/* Hover Overlay */
.pc-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top,
            color-mix(in srgb, var(--xit-color-base) 80%, transparent) 0%,
            transparent 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 4;
}

.product-card:hover .pc-hover-overlay {
    opacity: 1;
    transform: translateY(0);
}

.pc-cart-button {
    width: 100%;
    color: var(--xit-color-on-primary);
    font-weight: var(--xit-fw-title);
    background: var(--xit-color-primary);
    padding: 5px;
    border: 0px;
    border-radius: var(--xit-product-card-radius);
}

/* Product Details */
.pc-details {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.pc-category {
    font-size: var(--xit-fs-subtitle);
    color: var(--xit-color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-name {
    margin: 0;
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    line-height: 1.4;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-name a {
    color: var(--xit-color-base);
    text-decoration: none;
    transition: color 0.2s ease;
}

.pc-name a:hover {
    color: var(--xit-color-brand);
}

/* Min Order */
.pc-min-order {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 65%, transparent);
}

.pc-min-order svg {
    color: var(--xit-color-accent);
}

/* Price Section */
.pc-price-section {
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
}

.pc-price {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
}

.pc-price-hidden {
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-accent);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pc-details {
        padding: 0.85rem;
        gap: 0.4rem;
    }

    .pc-name {
        font-size: 0.9rem;
        min-height: 2.5rem;
    }

    .pc-price {
        font-size: 1rem;
    }

    .pc-badge {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .pc-details {
        padding: 0.75rem;
    }

    .pc-name {
        font-size: 0.85rem;
        min-height: 2.3rem;
    }

    .pc-category {
        font-size: 0.65rem;
    }

    .pc-min-order {
        font-size: 0.7rem;
    }
}

/*end Product Card*/


/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Category Card */
.category-card {
    display: block;
    text-decoration: none;
    border-radius: var(--xit-card-radius);
    overflow: hidden;
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--xit-color-base) 6%, transparent);
    animation: fadeInUp 0.5s ease-out backwards;
    animation-delay: var(--animation-delay, 0s);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
    border-color: var(--xit-color-brand);
}

.category-card-inner {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

/* Category Icon */
.category-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--xit-color-brand) 8%, var(--xit-color-page-bg));
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover .category-icon-wrapper {
    background: color-mix(in srgb, var(--xit-color-brand) 15%, var(--xit-color-page-bg));
    transform: scale(1.1) rotate(5deg);
}

.category-icon-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon-image {
    transform: scale(1.1);
}

.category-icon-fallback {
    color: var(--xit-color-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon-fallback {
    transform: scale(1.1);
}

/* Category Name */
.category-name {
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-base);
    text-align: center;
    transition: color 0.3s ease;
    line-height: 1.4;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card:hover .category-name {
    color: var(--xit-color-brand);
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .category-card-inner {
        padding: 1.25rem 0.75rem;
    }

    .category-icon-wrapper {
        width: 65px;
        height: 65px;
    }

    .category-icon-image {
        width: 40px;
        height: 40px;
    }

    .category-icon-fallback svg {
        width: 32px;
        height: 32px;
    }

    .category-name {
        font-size: 0.9rem;
        min-height: 2.4rem;
    }

    .category-arrow {
        width: 24px;
        height: 24px;
        bottom: 0.5rem;
        right: 0.5rem;
    }

    .category-arrow svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    .category-card-inner {
        padding: 1rem 0.65rem;
    }

    .category-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .category-icon-image {
        width: 36px;
        height: 36px;
    }

    .category-icon-fallback svg {
        width: 28px;
        height: 28px;
    }

    .category-name {
        font-size: 0.85rem;
        min-height: 2.2rem;
    }
}

/* High DPI screens */
@media (min-width: 1400px) {
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    }
}

/*end category card*/

/* Featured Products Section */

.fp-header {
    text-align: center;
    margin-bottom: 1rem;
}

.fp-main-title {
    font-size: var(--xit-fs-massive);
    font-weight: var(--xit-fw-massive);
    color: var(--xit-color-brand);
    margin: 0 0 0.5rem 0;
}

.fp-subtitle {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    margin: 0;
}

/* Carousel Wrapper */
.fp-carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.fp-carousel {
    position: relative;
    min-height: 500px;
}

/* Slide */
.fp-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.fp-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

/* Image Side */
.fp-image-side {
    position: relative;
    width: 60%;
    height: 400px;
    border-radius: var(--xit-card-radius);
    overflow: hidden;
    background: color-mix(in srgb, var(--xit-color-base) 5%, var(--xit-color-page-bg));
    box-shadow: 0 10px 40px color-mix(in srgb, var(--xit-color-base) 15%, transparent);
    border: 1px solid var(--xit-color-brand);
}

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

.fp-slide.active .fp-image {
    animation: fpImageZoom 0.8s ease-out;
}

.fp-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: color-mix(in srgb, var(--xit-color-base) 20%, transparent);
    background: color-mix(in srgb, var(--xit-color-base) 3%, var(--xit-color-page-bg));
}

/* Details Card (Overlapping) */
.fp-details-card {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 550px;
    z-index: 10;
}

.fp-card-inner {
    background: var(--xit-color-page-bg);
    border-radius: var(--xit-card-radius);
    padding: 1.5rem;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--xit-color-base) 20%, transparent);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 8%, transparent);
    transform: translateX(-20px);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fp-slide.active .fp-card-inner {
    animation: fpCardSlide 0.8s ease-out;
}

/* Product Name */
.fp-product-name {
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-brand);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Description */
.fp-product-desc {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 75%, transparent);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta Grid */
.fp-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fp-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fp-meta-label {
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 55%, transparent);
    font-weight: var(--xit-fw-subtitle);
}

.fp-meta-value {
    font-size: var(--xit-fs-paragraph);
    color: var(--xit-color-base);
    font-weight: var(--xit-fw-title);
}

/* Action Section */
.fp-action-section {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
}

.fp-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fp-price {
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-brand);
    line-height: 1;
}

.fp-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    border-radius: var(--xit-button-radius);
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
    white-space: nowrap;
}

.fp-view-btn:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 90%, var(--xit-color-base));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--xit-color-brand) 40%, transparent);
    color: var(--xit-color-on-brand);
}

.fp-view-btn svg {
    transition: transform 0.3s ease;
}

.fp-view-btn:hover svg {
    transform: translateX(4px);
}

/* Navigation Arrows */
.fp-nav-arrows {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.fp-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--xit-color-page-bg);
    color: var(--xit-color-brand);
    border: 2px solid color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-base) 10%, transparent);
}

.fp-arrow:hover {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    border-color: var(--xit-color-brand);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

/* Indicators */
.fp-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.fp-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--xit-color-base) 30%, transparent);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.fp-indicator:hover {
    background: color-mix(in srgb, var(--xit-color-base) 50%, transparent);
    transform: scale(1.2);
}

.fp-indicator.active {
    background: var(--xit-color-brand);
    width: 28px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .fp-details-card {
        width: 48%;
    }

    .fp-image-side {
        width: 75%;
    }
}

@media (max-width: 991px) {
    .fp-main-title {
        font-size: var(--xit-fs-large);
    }

    .fp-carousel {
        min-height: 600px;
    }

    .fp-slide {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
    }

    .fp-image-side {
        width: 100%;
        height: 350px;
        margin-bottom: 2rem;
    }

    .fp-details-card {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
    }

    .fp-card-inner {
        transform: none;
        padding: 2rem;
    }

    .fp-slide.active .fp-card-inner {
        animation: fpCardSlideUp 0.8s ease-out;
    }


    .fp-nav-arrows {
        bottom: auto;
        top: 1.5rem;
        right: 1.5rem;
    }

    .fp-indicators {
        bottom: auto;
        top: 1.5rem;
        left: 1.5rem;
        transform: none;
    }
}

@media (max-width: 768px) {
    .fp-header {
        margin-bottom: 2rem;
    }

    .fp-main-title {
        font-size: var(--xit-fs-heading);
    }

    .fp-subtitle {
        font-size: var(--xit-fs-subtitle);
    }

    .fp-carousel {
        min-height: 550px;
    }

    .fp-image-side {
        height: 280px;
        margin-bottom: 1.5rem;
    }

    .fp-card-inner {
        padding: 1.5rem;
    }

    .fp-product-name {
        font-size: var(--xit-fs-title);
    }

    .fp-meta-grid {
        grid-template-columns: 1fr;
    }

    .fp-action-section {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .fp-view-btn {
        justify-content: center;
    }

    .fp-arrow {
        width: 40px;
        height: 40px;
    }

    .fp-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .fp-carousel {
        min-height: 520px;
    }

    .fp-image-side {
        height: 240px;
    }

    .fp-card-inner {
        padding: 1.25rem;
    }

    .fp-product-name {
        font-size: 1.15rem;
    }

    .fp-product-desc {
        font-size: 0.9rem;
    }

    .fp-price {
        font-size: var(--xit-fs-heading);
    }

    .fp-nav-arrows {
        gap: 0.5rem;
    }
}

/* Focus States */
.fp-arrow:focus,
.fp-indicator:focus {
    outline: 2px solid var(--xit-color-brand);
    outline-offset: 2px;
}

/*end feature product slide*/

/* Default Stats Section */
.ds-stats-section {
    background: var(--xit-color-page-bg);
    border-radius: var(--xit-card-radius);
    padding: 2.5rem 2rem;
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--xit-color-base) 8%, transparent);
}

/* Header */
.ds-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ds-title {
    font-size: var(--xit-fs-heading);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0 0 0.5rem 0;
}

.ds-subtitle {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    margin: 0;
}

/* Stats Grid */
.ds-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Stat Card */
.ds-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: color-mix(in srgb, var(--xit-color-brand) 4%, var(--xit-color-page-bg));
    border-radius: var(--xit-card-radius);
    border: 1px solid color-mix(in srgb, var(--xit-color-brand) 15%, transparent);
    transition: all 0.3s ease;
    animation: dsCardFadeIn 0.6s ease-out backwards;
    animation-delay: var(--delay);
    position: relative;
    overflow: hidden;
}

.ds-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--xit-color-brand), var(--xit-color-primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ds-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
    border-color: var(--xit-color-brand);
}

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

/* Stat Icon */
.ds-stat-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--xit-color-brand) 15%, var(--xit-color-page-bg)),
            color-mix(in srgb, var(--xit-color-primary) 15%, var(--xit-color-page-bg)));
    border-radius: 50%;
    color: var(--xit-color-brand);
    transition: all 0.3s ease;
}

.ds-stat-card:hover .ds-stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--xit-color-brand), var(--xit-color-primary));
    color: var(--xit-color-on-brand);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

/* Stat Content */
.ds-stat-content {
    text-align: center;
}

.ds-stat-number {
    font-size: var(--xit-fs-massive);
    font-weight: var(--xit-fw-massive);
    color: var(--xit-color-brand);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ds-stat-label {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 75%, transparent);
    font-weight: 500;
    line-height: 1.4;
}

/* Trust Features */
.ds-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    flex-wrap: wrap;
}

.ds-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--xit-fs-paragraph);
    color: var(--xit-color-base);
    font-weight: 500;
    transition: all 0.3s ease;
}

.ds-feature-item svg {
    color: var(--xit-color-accent);
    transition: transform 0.3s ease;
}

.ds-feature-item:hover {
    color: var(--xit-color-brand);
}

.ds-feature-item:hover svg {
    transform: scale(1.2);
    color: var(--xit-color-brand);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ds-stats-grid {
        gap: 1.25rem;
    }

    .ds-stat-card {
        padding: 1.75rem 1.25rem;
    }
}

@media (max-width: 992px) {
    .ds-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ds-features {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .ds-stats-section {
        padding: 2rem 1.5rem;
    }

    .ds-header {
        margin-bottom: 2rem;
    }

    .ds-title {
        font-size: var(--xit-fs-title);
    }

    .ds-subtitle {
        font-size: var(--xit-fs-subtitle);
    }

    .ds-stats-grid {
        gap: 1rem;
    }

    .ds-stat-card {
        padding: 1.5rem 1rem;
    }

    .ds-stat-icon {
        width: 60px;
        height: 60px;
    }

    .ds-stat-icon svg {
        width: 28px;
        height: 28px;
    }

    .ds-stat-number {
        font-size: var(--xit-fs-large);
    }

    .ds-stat-label {
        font-size: var(--xit-fs-subtitle);
    }

    .ds-features {
        gap: 1.5rem;
        flex-direction: column;
    }

    .ds-feature-item {
        font-size: var(--xit-fs-subtitle);
    }

    .ds-feature-item svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 576px) {
    .ds-stats-section {
        padding: 1.5rem 1rem;
    }

    .ds-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .ds-stat-card {
        flex-direction: row;
        text-align: left;
        padding: 1.25rem 1rem;
    }

    .ds-stat-content {
        text-align: left;
    }

    .ds-stat-icon {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .ds-stat-icon svg {
        width: 26px;
        height: 26px;
    }

    .ds-stat-number {
        font-size: var(--xit-fs-heading);
    }

    .ds-stat-label {
        font-size: 0.85rem;
    }
}

/*END default stats  section*/

/* faq section */
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: var(--xit-fs-massive);
    font-weight: var(--xit-fw-massive);
    color: var(--xit-color-brand);
    margin: 0 0 0.75rem 0;
}

.faq-icon {
    color: var(--xit-color-primary);
}

.faq-subtitle {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Item */
.faq-item {
    background: var(--xit-color-page-bg);
    border-radius: var(--xit-card-radius);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--xit-color-base) 6%, transparent);
}

.faq-item:hover {
    border-color: color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--xit-color-base) 10%, transparent);
}

.faq-item.active {
    border-color: var(--xit-color-brand);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--xit-color-brand) 15%, transparent);
}

/* FAQ Question (Button) */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--xit-color-brand);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-question:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 3%, var(--xit-color-page-bg));
}

.faq-question-text {
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-base);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
    color: var(--xit-color-brand);
}

/* Toggle Icon */
.faq-toggle-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--xit-color-brand) 10%, var(--xit-color-page-bg));
    border-radius: 50%;
    color: var(--xit-color-brand);
    transition: all 0.3s ease;
    position: relative;
}

.faq-item.active .faq-toggle-icon {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    transform: rotate(180deg);
}

.faq-toggle-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.icon-minus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .icon-plus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .icon-minus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

/* FAQ Answer Wrapper */
.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-wrapper {
    max-height: 1000px;
}

/* FAQ Answer */
.faq-answer {
    padding: 0 1.75rem 1.75rem 1.75rem;
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 80%, transparent);
    line-height: 1.7;
    animation: fadeInAnswer 0.4s ease-out;
}

.faq-answer p {
    margin: 0 0 1rem 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* CTA Section */
.faq-cta {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--xit-color-brand) 8%, var(--xit-color-page-bg)),
            color-mix(in srgb, var(--xit-color-primary) 8%, var(--xit-color-page-bg)));
    border-radius: var(--xit-card-radius);
    border: 1px solid color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.faq-cta-content {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    flex: 1;
}

.faq-cta-content>svg {
    color: var(--xit-color-brand);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.faq-cta-title {
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0 0 0.35rem 0;
}

.faq-cta-text {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 75%, transparent);
    margin: 0;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    border-radius: var(--xit-button-radius);
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

.faq-cta-btn:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 90%, var(--xit-color-base));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--xit-color-brand) 40%, transparent);
    color: var(--xit-color-on-brand);
}

.faq-cta-btn svg {
    transition: transform 0.3s ease;
}

.faq-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-title {
        font-size: var(--xit-fs-large);
        flex-direction: column;
        gap: 0.5rem;
    }

    .faq-subtitle {
        font-size: var(--xit-fs-subtitle);
    }

    .faq-accordion {
        gap: 0.75rem;
    }

    .faq-question {
        padding: 1.25rem 1.25rem;
        gap: 1rem;
    }

    .faq-question-text {
        font-size: var(--xit-fs-paragraph);
    }

    .faq-toggle-icon {
        width: 28px;
        height: 28px;
    }

    .faq-toggle-icon svg {
        width: 16px;
        height: 16px;
    }

    .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
        font-size: var(--xit-fs-subtitle);
    }

    .faq-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
    }

    .faq-cta-content {
        flex-direction: column;
        gap: 1rem;
    }

    .faq-cta-btn {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .faq-title {
        font-size: var(--xit-fs-heading);
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question-text {
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }

    .faq-cta {
        padding: 1.25rem;
    }

    .faq-cta-content>svg {
        width: 24px;
        height: 24px;
    }

    .faq-cta-title {
        font-size: 1.1rem;
    }

    .faq-cta-text {
        font-size: var(--xit-fs-subtitle);
    }
}

/* Focus States */
.faq-question:focus {
    outline: 2px solid var(--xit-color-brand);
    outline-offset: -2px;
}

/*end faq section */

/* Testimonials Section */
.testimonials-section {
    background: color-mix(in srgb, var(--xit-color-base) 2%, var(--xit-color-page-bg));
}

/* Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: var(--xit-fs-massive);
    font-weight: var(--xit-fw-massive);
    color: var(--xit-color-brand);
    margin: 0 0 0.75rem 0;
}

.testimonials-icon {
    color: var(--xit-color-primary);
}

.testimonials-subtitle {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--xit-color-page-bg);
    border-radius: var(--xit-card-radius);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px color-mix(in srgb, var(--xit-color-base) 6%, transparent);
    animation: testimonialFadeIn 0.6s ease-out backwards;
    animation-delay: var(--delay);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--xit-color-brand), var(--xit-color-primary), var(--xit-color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--xit-color-brand) 15%, transparent);
    border-color: color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

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

/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0.08;
    color: var(--xit-color-brand);
    pointer-events: none;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    opacity: 0.12;
    transform: scale(1.1);
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.testimonial-quote {
    font-size: var(--xit-fs-paragraph);
    color: var(--xit-color-base);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    position: relative;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    position: relative;
    z-index: 1;
}

/* Author Image */
.author-image-wrapper {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: var(--xit-avatar-radius);
    overflow: hidden;
    border: 2px solid color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
    transition: all 0.3s ease;
    background: color-mix(in srgb, var(--xit-color-brand) 8%, var(--xit-color-page-bg));
}

.testimonial-card:hover .author-image-wrapper {
    border-color: var(--xit-color-brand);
    transform: scale(1.05);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 25%, transparent);
}

.author-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.author-image-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--xit-color-brand);
}

/* Author Details */
.author-details {
    flex-grow: 1;
    min-width: 0;
}

.author-name {
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-brand);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.author-position {
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 65%, transparent);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-header {
        margin-bottom: 2rem;
    }

    .testimonials-title {
        font-size: var(--xit-fs-large);
        flex-direction: column;
        gap: 0.5rem;
    }

    .testimonials-subtitle {
        font-size: var(--xit-fs-subtitle);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .testimonial-card {
        padding: 1.75rem 1.5rem;
    }

    .testimonial-quote-icon {
        top: 1.25rem;
        right: 1.25rem;
    }

    .testimonial-quote-icon svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 576px) {
    .testimonials-title {
        font-size: var(--xit-fs-heading);
    }

    .testimonials-icon {
        width: 28px;
        height: 28px;
    }

    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }

    .testimonial-quote {
        font-size: var(--xit-fs-subtitle);
    }

    .author-image-wrapper {
        width: 48px;
        height: 48px;
    }

    .author-name {
        font-size: var(--xit-fs-subtitle);
    }

    .author-position {
        font-size: 0.75rem;
    }

    .testimonial-author {
        flex-wrap: wrap;
        position: relative;
    }
}

/* High-resolution displays */
@media (min-width: 1400px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*end testimonial section*/

/* Partners Section */

/* Header */
.partners-header {
    text-align: center;
    margin-bottom: 2rem;
}

.partners-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: var(--xit-fs-massive);
    font-weight: var(--xit-fw-massive);
    color: var(--xit-color-brand);
    margin: 0 0 0.75rem 0;
}

.partners-icon {
    color: var(--xit-color-primary);
}

.partners-subtitle {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Partner Item */
.partner-item {
    animation: partnerFadeIn 0.6s ease-out backwards;
    animation-delay: var(--delay);
}

/* Partner Link */
.partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 1.5rem;
    background: color-mix(in srgb, var(--xit-color-base) 2%, var(--xit-color-page-bg));
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    border-radius: var(--xit-card-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    min-height: 120px;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--xit-color-base) 4%, transparent);
}

.partner-link:hover {
    background: var(--xit-color-page-bg);
    border-color: var(--xit-color-brand);
    transform: translateY(-8px);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--xit-color-brand) 12%, transparent);
}

a.partner-link:hover {
    cursor: pointer;
}

/* Partner Logo Wrapper */
.partner-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Partner Logo */
.partner-logo {
    max-width: 100%;
    max-height: 80px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.partner-link:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

/* Partner Logo Fallback */
.partner-logo-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: color-mix(in srgb, var(--xit-color-base) 40%, transparent);
    text-align: center;
    transition: all 0.3s ease;
}

.partner-link:hover .partner-logo-fallback {
    color: var(--xit-color-brand);
    transform: scale(1.05);
}

.partner-name {
    font-size: var(--xit-fs-subtitle);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .partners-header {
        margin-bottom: 2rem;
    }

    .partners-title {
        font-size: var(--xit-fs-large);
        flex-direction: column;
        gap: 0.5rem;
    }

    .partners-subtitle {
        font-size: var(--xit-fs-subtitle);
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .partner-link {
        padding: 1.5rem 1.25rem;
        min-height: 100px;
    }

    .partner-logo {
        max-height: 60px;
    }

    .partners-trust-badge {
        padding: 1rem 1.5rem;
        font-size: var(--xit-fs-subtitle);
    }
}

@media (max-width: 576px) {
    .partners-title {
        font-size: var(--xit-fs-heading);
    }

    .partners-icon {
        width: 28px;
        height: 28px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .partner-link {
        padding: 1.25rem 1rem;
        min-height: 90px;
    }

    .partner-logo {
        max-height: 50px;
    }

    .partner-logo-fallback svg {
        width: 36px;
        height: 36px;
    }

    .partners-trust-badge {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        text-align: center;
    }
}

/* High-resolution displays */
@media (min-width: 1400px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/*End  partners  section */

/* Index Blogs Section */

/* Blog Card */
.indx-blog-card {
    background: var(--xit-color-page-bg);
    border-radius: var(--xit-card-radius);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px color-mix(in srgb, var(--xit-color-base) 6%, transparent);
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: indxBlogCardFadeIn 0.6s ease-out backwards;
    animation-delay: var(--delay);
}

.indx-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--xit-color-brand) 15%, transparent);
    border-color: color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

/* Blog Image */
.indx-blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: color-mix(in srgb, var(--xit-color-base) 5%, var(--xit-color-page-bg));
}

.indx-blog-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.indx-blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.indx-blog-card:hover .indx-blog-image {
    transform: scale(1.08);
}

.indx-blog-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: color-mix(in srgb, var(--xit-color-base) 25%, transparent);
}

/* Date Badge */
.indx-blog-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: color-mix(in srgb, var(--xit-color-base) 85%, transparent);
    backdrop-filter: blur(8px);
    color: var(--xit-color-page-bg);
    border-radius: var(--xit-button-radius);
    font-size: var(--xit-fs-subtitle);
    font-weight: 600;
}

/* Blog Content */
.indx-blog-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

/* Blog Title */
.indx-blog-title {
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-heading);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.indx-blog-title a {
    color: var(--xit-color-base);
    text-decoration: none;
    transition: color 0.3s ease;
}

.indx-blog-title a:hover {
    color: var(--xit-color-brand);
}

/* Blog Excerpt */
.indx-blog-excerpt {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 75%, transparent);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Blog Meta */
.indx-blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    margin-top: auto;
    flex-wrap: wrap;
}

.indx-blog-author {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 65%, transparent);
}

.indx-blog-author svg {
    color: var(--xit-color-accent);
    flex-shrink: 0;
}

.indx-blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--xit-fs-subtitle);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-brand);
    text-decoration: none;
    margin-left: auto;
    transition: all 0.3s ease;
}

.indx-blog-read-more:hover {
    gap: 0.6rem;
    color: var(--xit-color-primary);
}

.indx-blog-read-more svg {
    transition: transform 0.3s ease;
}

.indx-blog-read-more:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .indx-blog-image-wrapper {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .indx-blog-image-wrapper {
        height: 200px;
    }

    .indx-blog-content {
        padding: 1.5rem;
    }

    .indx-blog-title {
        font-size: 1.1rem;
    }

    .indx-blog-excerpt {
        font-size: var(--xit-fs-subtitle);
    }
}

@media (max-width: 576px) {
    .indx-blog-image-wrapper {
        height: 180px;
    }

    .indx-blog-content {
        padding: 1.25rem;
    }

    .indx-blog-meta {
        gap: 1rem;
    }

    .indx-blog-read-more {
        width: 100%;
        justify-content: flex-end;
    }
}

/*End Index Blogs Section */

/* Footer */
.footer {
    background: var(--xit-color-base);
    color: color-mix(in srgb, var(--xit-color-page-bg) 85%, transparent);
    padding-top: 4rem;
}

/* Footer Main */
.footer-main {
    padding-bottom: 3rem;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
}

.footer-company-name {
    font-size: var(--xit-fs-heading);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-page-bg);
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-intro {
    font-size: var(--xit-fs-paragraph);
    line-height: 1.6;
    margin: 0;
    color: color-mix(in srgb, var(--xit-color-page-bg) 75%, transparent);
}

/* Social Links */
.footer-socials {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--xit-color-page-bg) 10%, transparent);
    color: var(--xit-color-page-bg);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 40%, transparent);
}

/* Footer Section */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-heading {
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-page-bg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--xit-color-page-bg);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links li a {
    color: color-mix(in srgb, var(--xit-color-page-bg) 75%, transparent);
    text-decoration: none;
    font-size: var(--xit-fs-paragraph);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-links li a::before {
    content: '→';
    opacity: 0;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.footer-links li a:hover {
    color: var(--xit-color-page-bg);
    padding-left: 0.5rem;
}

.footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: var(--xit-fs-paragraph);
    line-height: 1.6;
}

.footer-contact li span {
    color: color-mix(in srgb, var(--xit-color-page-bg) 75%, transparent);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid color-mix(in srgb, var(--xit-color-page-bg) 15%, transparent);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright {
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-page-bg) 65%, transparent);
    margin: 0;
}

.footer-separator {
    color: color-mix(in srgb, var(--xit-color-page-bg) 40%, transparent);
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer {
        padding-top: 3rem;
        margin-top: 3rem;
    }

    .footer-main {
        padding-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 2.5rem;
    }

    .footer-main {
        padding-bottom: 2rem;
    }

    .footer-brand {
        gap: 1rem;
    }

    .footer-section {
        gap: 1rem;
    }

}

@media (max-width: 576px) {
    .footer {
        padding-top: 2rem;
    }

    .footer-company-name {
        font-size: var(--xit-fs-title);
    }

    .footer-intro {
        font-size: var(--xit-fs-subtitle);
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .footer-heading {
        font-size: var(--xit-fs-subtitle);
    }

    .footer-links li a,
    .footer-contact li {
        font-size: var(--xit-fs-subtitle);
    }
}

/*end footer section */

/* Products Layout */
.products-layout-wrapper,
.content-layout-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar */
.products-sidebar,
.content-sidebar {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--xit-color-brand) color-mix(in srgb, var(--xit-color-base) 10%, transparent);
}

.products-sidebar::-webkit-scrollbar,
.content-sidebar::-webkit-scrollbar {
    width: 6px;
}

.products-sidebar::-webkit-scrollbar-track,
.content-sidebar::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--xit-color-base) 5%, transparent);
    border-radius: 3px;
}

.products-sidebar::-webkit-scrollbar-thumb,
.content-sidebar::-webkit-scrollbar-thumb {
    background: var(--xit-color-brand);
    border-radius: 3px;
}

.products-sidebar::-webkit-scrollbar-thumb:hover,
.content-sidebar::-webkit-scrollbar-thumb:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 90%, var(--xit-color-base));
}

.sidebar-sticky {
    background: var(--xit-color-page-bg);
    border-radius: var(--xit-card-radius);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    padding: 1.5rem;
    box-shadow: 0 2px 12px color-mix(in srgb, var(--xit-color-base) 6%, transparent);
}

/* Mobile Offcanvas */
.products-offcanvas .offcanvas-header,
.content-offcanvas .offcanvas-header {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    padding: 1.25rem 1.5rem;
}

.products-offcanvas .offcanvas-title,
.content-offcanvas .offcanvas-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-heading);
    margin: 0;
}

.products-offcanvas .offcanvas-body,
.content-offcanvas .offcanvas-body {
    padding: 1.5rem;
    background: var(--xit-color-page-bg);
}

/* Mobile Filter Button */
.products-filter-btn,
.content-sidebar-btn {
    position: fixed;
    bottom: 2rem;
    left: 1.5rem;
    z-index: 1020;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    border: none;
    border-radius: 50px;
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--xit-color-brand) 40%, transparent);
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-filter-btn:hover,
.content-sidebar-btn:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 90%, var(--xit-color-base));
    transform: translateY(-3px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--xit-color-brand) 50%, transparent);
}

.content-layout-wrapper.no-sidebar {
    grid-template-columns: 1fr;
}

/* Responsive */
@media (max-width: 991px) {

    .products-layout-wrapper,
    .content-layout-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .products-filter-btn,
    .content-sidebar-btn {
        bottom: 1.5rem;
        left: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: var(--xit-fs-subtitle);
    }
}

/*end product layout*/

/* Products Sidebar Category Filter */
.psb-category-filter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Header */
.psb-filter-header {
    padding-bottom: 0.75rem;
    border-bottom: 2px solid color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
}

.psb-filter-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-brand);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.psb-filter-title svg {
    color: var(--xit-color-primary);
}

/* Category List */
.psb-category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Category Item */
.psb-category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: color-mix(in srgb, var(--xit-color-base) 3%, var(--xit-color-page-bg));
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    border-radius: var(--xit-card-radius);
    text-decoration: none;
    color: var(--xit-color-base);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.psb-category-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--xit-color-brand);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.psb-category-item:hover {
    background: var(--xit-color-page-bg);
    border-color: var(--xit-color-brand);
    transform: translateX(4px);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 12%, transparent);
}

.psb-category-item:hover::before {
    transform: scaleY(1);
}

/* Category Icon */
.psb-category-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--xit-color-brand) 10%, var(--xit-color-page-bg));
    border-radius: 8px;
    color: var(--xit-color-brand);
    transition: all 0.3s ease;
}

.psb-category-item:hover .psb-category-icon {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    transform: scale(1.1);
}

.psb-category-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Category Name */
.psb-category-name {
    flex: 1;
    font-size: var(--xit-fs-subtitle);

    line-height: 1.4;
    word-break: break-word;
}

/* Arrow */
.psb-category-arrow {
    color: color-mix(in srgb, var(--xit-color-base) 40%, transparent);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.psb-category-item:hover .psb-category-arrow {
    color: var(--xit-color-brand);
    transform: translateX(4px);
}


/* Responsive */
@media (max-width: 991px) {
    .psb-category-filter {
        gap: 0.85rem;
    }

    .psb-category-item {
        padding: 0.65rem;
    }

    .psb-category-icon {
        width: 32px;
        height: 32px;
    }

    .psb-category-logo {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .psb-filter-title {
        font-size: var(--xit-fs-subtitle);
    }

    .psb-category-item {
        padding: 0.6rem;
    }

    .psb-category-name {
        font-size: var(--xit-fs-subtitle);
    }
}

/* end Products Sidebar Category Filter */

/* Content Sidebar - Latest Blogs */
.csb-latest-blogs {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Sidebar Header */
.csb-header {
    padding-bottom: 1rem;
    border-bottom: 2px solid color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
}

.csb-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0;
}

.csb-title svg {
    color: var(--xit-color-primary);
    flex-shrink: 0;
}

/* Blogs List */
.csb-blogs-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Blog Item */
.csb-blog-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem;
    background: color-mix(in srgb, var(--xit-color-base) 3%, var(--xit-color-page-bg));
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    border-radius: var(--xit-card-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.csb-blog-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--xit-color-brand);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.csb-blog-item:hover {
    background: var(--xit-color-page-bg);
    border-color: color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 10%, transparent);
}

.csb-blog-item:hover::before {
    transform: scaleY(1);
}

/* Blog Image */
.csb-blog-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: var(--xit-card-radius);
    overflow: hidden;
    background: color-mix(in srgb, var(--xit-color-base) 5%, var(--xit-color-page-bg));
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
}

.csb-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.csb-blog-item:hover .csb-blog-image img {
    transform: scale(1.1);
}

.csb-blog-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: color-mix(in srgb, var(--xit-color-base) 30%, transparent);
}

/* Blog Details */
.csb-blog-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.csb-blog-title {
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-base);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.csb-blog-item:hover .csb-blog-title {
    color: var(--xit-color-brand);
}

/* Blog Meta */
.csb-blog-meta {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 60%, transparent);
}

.csb-blog-meta svg {
    color: var(--xit-color-accent);
    flex-shrink: 0;
}


/* Responsive */
@media (max-width: 991px) {
    .csb-blog-image {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 576px) {
    .csb-title {
        font-size: var(--xit-fs-paragraph);
    }

    .csb-blog-image {
        width: 50px;
        height: 50px;
    }

    .csb-blog-title {
        font-size: var(--xit-fs-subtitle);
    }
}

/* end content sidebar style*/

/* No Product State */
.no-product-product-page {
    background-color: color-mix(in srgb, var(--xit-color-base) 5%, transparent);
    border: 1px dashed var(--xit0color-base);
    border-radius: var(--xit-card-radius);
    text-align: center;
    padding: 60px 20px;
}

.no-product-product-page i {
    font-size: 64px;
    color: var(--xit-color-brand);
    opacity: 0.8;
    display: block;
}

.no-product-product-page h4 {
    font-weight: var(--xit-fs-title);
    margin-top: 20px;
    color: var(--xit-color-base);
}

.no-product-product-page p {
    color: var(--xit-color-base);
    margin-bottom: 0;
    font-size: var(--xit-fs-paragraph);
}

.pd-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    border: none;
    border-radius: var(--xit-button-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Long Button (with text) */
.pd-cart-btn-long {
    padding: 0.85rem 1.75rem;
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

.pd-cart-btn-long:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 90%, var(--xit-color-base));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--xit-color-brand) 40%, transparent);
}

.pd-cart-btn-long:active {
    transform: translateY(0);
}

/* Icon Button (icon only) */
.pd-cart-btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    background: color-mix(in srgb, var(--xit-color-brand) 10%, var(--xit-color-page-bg));
    color: var(--xit-color-brand);
    border: 1px solid color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

.pd-cart-btn-icon:hover {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    border-color: var(--xit-color-brand);
    transform: scale(1.05);
}

.pd-cart-btn-icon:active {
    transform: scale(0.98);
}

/* Responsive */
@media (max-width: 576px) {
    .pd-cart-btn-long {
        padding: 0.75rem 1.5rem;
        font-size: var(--xit-fs-subtitle);
    }

    .pd-cart-btn-icon {
        width: 36px;
        height: 36px;
    }

    .pd-cart-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* end if  add  to card style*/

/*rating stars*/
.pd-rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.pd-star {
    flex-shrink: 0;
}

.pd-star-filled {
    color: var(--xit-color-base);
}

.pd-star-empty {
    color: color-mix(in srgb, var(--xit-color-base) 25%, transparent);
}

/*end of rating stars*/

/* Product Review Card */
.pd-review-card {
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    border-radius: var(--xit-card-radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--xit-color-base) 4%, transparent);
}

.pd-review-card:hover {
    border-color: color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--xit-color-base) 8%, transparent);
}

/* Review Header */
.pd-review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid color-mix(in srgb, var(--xit-color-base) 8%, transparent);
}

/* Reviewer Info */
.pd-reviewer-info {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    flex: 1;
}

.pd-reviewer-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--xit-color-brand) 15%, var(--xit-color-page-bg)),
            color-mix(in srgb, var(--xit-color-primary) 15%, var(--xit-color-page-bg)));
    border-radius: 50%;
    color: var(--xit-color-brand);
}

.pd-reviewer-details {
    flex: 1;
    min-width: 0;
}

.pd-reviewer-name {
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0 0 0.5rem 0;
}

/* Review Meta */
.pd-review-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pd-review-date {
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 65%, transparent);
}

/* Review Badge */
.pd-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    background: color-mix(in srgb, var(--xit-color-primary) 12%, var(--xit-color-page-bg));
    color: var(--xit-color-primary);
    border-radius: 50px;
    font-size: var(--xit-fs-subtitle);
    font-weight: 600;
    text-transform: capitalize;
    white-space: nowrap;
}

.pd-review-badge svg {
    flex-shrink: 0;
}

/* Review Content */
.pd-review-content {
    margin-bottom: 1rem;
}

.pd-review-content p {
    font-size: var(--xit-fs-paragraph);
    color: var(--xit-color-base);
    line-height: 1.7;
    margin: 0;
    white-space: pre-line;
}

/* Review Footer */
.pd-review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid color-mix(in srgb, var(--xit-color-base) 20%, transparent);
}

.pd-review-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--xit-fs-subtitle);
    color: var(--xit-color-accent);
    font-weight: 500;
}

.pd-review-verified svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .pd-review-card {
        padding: 1.25rem;
    }

    .pd-review-header {
        flex-wrap: wrap;
    }

    .pd-reviewer-avatar {
        width: 40px;
        height: 40px;
    }

    .pd-reviewer-avatar svg {
        width: 20px;
        height: 20px;
    }

    .pd-review-badge {
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .pd-review-card {
        padding: 1rem;
    }

    .pd-reviewer-name {
        font-size: var(--xit-fs-subtitle);
    }

    .pd-review-content p {
        font-size: var(--xit-fs-subtitle);
    }

    .pd-review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .pd-review-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/*end product review card*/

/* Cart Page */
/* Cart Header */
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
}

.cart-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--xit-fs-heading);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0;
}

.cart-count-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--xit-color-brand) 15%, var(--xit-color-page-bg)),
            color-mix(in srgb, var(--xit-color-primary) 15%, var(--xit-color-page-bg)));
    border-radius: var(--xit-card-radius);
}

.cart-count {
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-brand);
    line-height: 1;
}

.cart-count-label {
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    font-weight: 500;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Cart Item */
.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    border-radius: var(--xit-card-radius);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--xit-color-base) 4%, transparent);
}

.cart-item:hover {
    border-color: color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--xit-color-base) 8%, transparent);
}

/* Product Image */
.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--xit-card-radius);
    overflow: hidden;
    background: color-mix(in srgb, var(--xit-color-base) 3%, var(--xit-color-page-bg));
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
}

.cart-item-image a {
    display: block;
    width: 100%;
    height: 100%;
}

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

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

.cart-item-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: color-mix(in srgb, var(--xit-color-base) 30%, transparent);
}

/* Product Details */
.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.cart-item-name {
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    margin: 0;
    line-height: 1.4;
}

.cart-item-name a {
    color: var(--xit-color-base);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-item-name a:hover {
    color: var(--xit-color-brand);
}

.cart-item-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--xit-fs-subtitle);
}

.cart-item-meta-label {
    color: color-mix(in srgb, var(--xit-color-base) 60%, transparent);
    font-weight: 500;
}

.cart-item-meta-value {
    color: var(--xit-color-base);
    font-weight: 600;
}

/* Product Price */
.cart-item-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-price-label {
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 60%, transparent);
    font-weight: 500;
}

.cart-item-price-value {
    font-size: var(--xit-fs-paragraph);
    color: var(--xit-color-brand);
    font-weight: var(--xit-fw-title);
}

/* Actions */
.cart-item-actions {
    display: flex;
    align-items: center;
}

/* Cart Footer */
.cart-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--xit-color-brand) 8%, var(--xit-color-page-bg)),
            color-mix(in srgb, var(--xit-color-primary) 8%, var(--xit-color-page-bg)));
    border: 1px solid color-mix(in srgb, var(--xit-color-brand) 15%, transparent);
    border-radius: var(--xit-card-radius);
}

.cart-continue-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: var(--xit-color-page-bg);
    color: var(--xit-color-base);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 20%, transparent);
    border-radius: var(--xit-button-radius);
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-continue-btn:hover {
    background: color-mix(in srgb, var(--xit-color-base) 5%, var(--xit-color-page-bg));
    border-color: var(--xit-color-brand);
    color: var(--xit-color-brand);
}

.cart-checkout-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    border: none;
    border-radius: var(--xit-button-radius);
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

.cart-checkout-btn:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 90%, var(--xit-color-base));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--xit-color-brand) 40%, transparent);
    color: var(--xit-color-on-brand);
}

.cart-checkout-btn svg {
    transition: transform 0.3s ease;
}

.cart-checkout-btn:hover svg {
    transform: translateX(4px);
}

/* Empty Cart */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    border-radius: var(--xit-card-radius);
    text-align: center;
}

.cart-empty-icon {
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--xit-color-base) 25%, transparent);
}

.cart-empty-title {
    font-size: var(--xit-fs-large);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0 0 1rem 0;
}

.cart-empty-text {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    margin: 0 0 2rem 0;
    max-width: 500px;
}

.cart-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    border-radius: var(--xit-button-radius);
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

.cart-empty-btn:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 90%, var(--xit-color-base));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--xit-color-brand) 40%, transparent);
    color: var(--xit-color-on-brand);
}

/* Responsive */
@media (max-width: 768px) {
    .cart-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
        padding: 1.25rem;
    }

    .cart-item-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
        padding-top: 1rem;
        border-top: 1px solid color-mix(in srgb, var(--xit-color-base) 8%, transparent);
    }

    .cart-footer {
        flex-direction: column;
        padding: 1.5rem;
    }

    .cart-continue-btn,
    .cart-checkout-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cart-item {
        padding: 1rem;
    }

    .cart-item-name {
        font-size: var(--xit-fs-paragraph);
    }

    .cart-empty {
        padding: 3rem 1.5rem;
    }

    .cart-empty-icon svg {
        width: 60px;
        height: 60px;
    }

    .cart-empty-title {
        font-size: var(--xit-fs-heading);
    }

    .cart-empty-text {
        font-size: var(--xit-fs-subtitle);
    }
}

/* end cart page*/

/* Remove from Cart Form */

/* Remove Button Base */
.cart-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    border: none;
    border-radius: var(--xit-button-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cart-remove-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: color-mix(in srgb, var(--xit-color-on-danger) 30%, transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cart-remove-btn:active::before {
    width: 300px;
    height: 300px;
}

/* Long Button (with text) */
.cart-remove-btn-long {
    padding: 0.75rem 1.5rem;
    background: var(--xit-color-danger);
    color: var(--xit-color-on-danger);
    border: 1px solid var(--xit-color-danger);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--xit-color-danger) 25%, transparent);
}

.cart-remove-btn-long:hover {
    background: color-mix(in srgb, var(--xit-color-danger) 90%, #000);
    border-color: color-mix(in srgb, var(--xit-color-danger) 85%, #000);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-danger) 35%, transparent);
}

.cart-remove-btn-long:active {
    transform: translateY(0);
}

/* Icon Button (icon only) */
.cart-remove-btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    background: color-mix(in srgb, var(--xit-color-danger) 10%, var(--xit-color-page-bg));
    color: var(--xit-color-danger);
    border: 1px solid color-mix(in srgb, var(--xit-color-danger) 30%, transparent);
}

.cart-remove-btn-icon:hover {
    background: var(--xit-color-danger);
    color: var(--xit-color-on-danger);
    border-color: var(--xit-color-danger);
    transform: scale(1.05);
}

.cart-remove-btn-icon:active {
    transform: scale(0.98);
}

/* Disabled State */
.cart-remove-btn:disabled {
    background: color-mix(in srgb, var(--xit-color-base) 20%, transparent);
    color: color-mix(in srgb, var(--xit-color-base) 50%, transparent);
    border-color: color-mix(in srgb, var(--xit-color-base) 20%, transparent);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 576px) {
    .cart-remove-btn-long {
        padding: 0.65rem 1.25rem;
        font-size: var(--xit-fs-subtitle);
    }

    .cart-remove-btn-icon {
        width: 36px;
        height: 36px;
    }

    .cart-remove-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* end Remove from Cart Form */

/* Checkout Page */

/* Checkout Header */
.checkout-header {
    margin-bottom: 2.5rem;
}

.checkout-header-content {
    text-align: center;
    margin-bottom: 2rem;
}

.checkout-title {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--xit-fs-massive);
    font-weight: var(--xit-fw-massive);
    color: var(--xit-color-brand);
    margin: 0 0 0.5rem 0;
}

.checkout-title svg {
    color: var(--xit-color-primary);
}

.checkout-subtitle {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    margin: 0;
}

/* Progress Steps */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.checkout-step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--xit-color-base) 15%, var(--xit-color-page-bg));
    color: color-mix(in srgb, var(--xit-color-base) 60%, transparent);
    border-radius: 50%;
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-heading);
    transition: all 0.3s ease;
}

.checkout-step.active .checkout-step-number {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

.checkout-step-label {
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 60%, transparent);
    font-weight: 500;
}

.checkout-step.active .checkout-step-label {
    color: var(--xit-color-brand);
    font-weight: 600;
}

.checkout-step-line {
    width: 60px;
    height: 2px;
    background: color-mix(in srgb, var(--xit-color-base) 20%, transparent);
}

/* Checkout Section */
.checkout-section {
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    border-radius: var(--xit-card-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px color-mix(in srgb, var(--xit-color-base) 6%, transparent);
}

.checkout-section-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
}

.checkout-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--xit-fs-heading);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0 0 0.5rem 0;
}

.checkout-section-title svg {
    color: var(--xit-color-primary);
}

.checkout-section-desc {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    margin: 0;
}

/* Checkout Items */
.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Customer Form */
.checkout-customer-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Checkout Note */
.checkout-note {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem;
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--xit-color-accent) 10%, var(--xit-color-page-bg)),
            color-mix(in srgb, var(--xit-color-primary) 10%, var(--xit-color-page-bg)));
    border: 1px solid color-mix(in srgb, var(--xit-color-accent) 20%, transparent);
    border-radius: var(--xit-card-radius);
    margin-bottom: 2rem;
}

.checkout-note-icon {
    flex-shrink: 0;
    color: var(--xit-color-accent);
}

.checkout-note-content {
    flex: 1;
}

.checkout-note-title {
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0 0 0.75rem 0;
}

.checkout-note-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkout-note-list li {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 80%, transparent);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.checkout-note-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--xit-color-accent);
    font-weight: bold;
}

/* Submit Section */
.checkout-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--xit-color-brand) 10%, var(--xit-color-page-bg)),
            color-mix(in srgb, var(--xit-color-primary) 10%, var(--xit-color-page-bg)));
    border: 1px solid color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
    border-radius: var(--xit-card-radius);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--xit-color-brand) 12%, transparent);
}

.checkout-submit-info {
    display: flex;
    gap: 1.5rem;
    flex: 1;
}

.checkout-submit-info>svg {
    color: var(--xit-color-brand);
    flex-shrink: 0;
}

.checkout-submit-title {
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0 0 0.5rem 0;
}

.checkout-submit-text {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 80%, transparent);
    line-height: 1.6;
    margin: 0;
}

.checkout-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    border: none;
    border-radius: var(--xit-button-radius);
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 6px 20px color-mix(in srgb, var(--xit-color-brand) 35%, transparent);
}

.checkout-submit-btn:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 90%, var(--xit-color-base));
    transform: translateY(-3px);
    box-shadow: 0 8px 28px color-mix(in srgb, var(--xit-color-brand) 45%, transparent);
}

.checkout-submit-btn:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {

    .checkout-title {
        font-size: var(--xit-fs-large);
        flex-direction: column;
    }

    .checkout-steps {
        gap: 0.5rem;
    }

    .checkout-step-number {
        width: 36px;
        height: 36px;
        font-size: var(--xit-fs-subtitle);
    }

    .checkout-step-label {
        font-size: 0.7rem;
    }

    .checkout-step-line {
        width: 40px;
    }

    .checkout-section {
        padding: 1.5rem;
    }

    .checkout-note {
        flex-direction: column;
        padding: 1.5rem;
    }

    .checkout-submit {
        flex-direction: column;
        padding: 1.5rem;
    }

    .checkout-submit-info {
        flex-direction: column;
    }

    .checkout-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .checkout-title {
        font-size: var(--xit-fs-heading);
    }

    .checkout-title svg {
        width: 28px;
        height: 28px;
    }

    .checkout-section {
        padding: 1.25rem;
    }

    .checkout-section-title {
        font-size: var(--xit-fs-title);
    }

    .checkout-section-title svg {
        width: 20px;
        height: 20px;
    }

    .checkout-submit-btn {
        padding: 0.85rem 2rem;
        font-size: var(--xit-fs-paragraph);
    }
}

/* Checkout Item */
.checkout-item {
    padding: 1.5rem;
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    border-radius: var(--xit-card-radius);
    transition: all 0.3s ease;
}

.checkout-item:hover {
    border-color: color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--xit-color-base) 8%, transparent);
}

/* Item Main (Image + Info) */
.checkout-item-main {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
}

/* Product Image */
.checkout-item-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--xit-card-radius);
    overflow: hidden;
    background: color-mix(in srgb, var(--xit-color-base) 3%, var(--xit-color-page-bg));
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
}

.checkout-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Product Info */
.checkout-item-info {
    flex: 1;
    min-width: 0;
}

.checkout-product-name {
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.checkout-category-label {
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 65%, transparent);
    margin: 0;
}

.checkout-category {
    color: var(--xit-color-base);
    font-weight: 600;
}

/* Item Options */
.checkout-item-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

/* Field */
.checkout-item-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkout-item-field-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--xit-fs-subtitle);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-base);
}

.checkout-item-field-label svg {
    color: var(--xit-color-brand);
    flex-shrink: 0;
}

/* Quantity Wrapper */
.checkout-qty-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkout-qty-wrapper input {
    flex: 1;
}

.checkout-min-qty-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    background: color-mix(in srgb, var(--xit-color-accent) 12%, var(--xit-color-page-bg));
    color: var(--xit-color-accent);
    border-radius: var(--xit-button-radius);
    font-size: var(--xit-fs-subtitle);
    font-weight: 600;
    white-space: nowrap;
}

.checkout-min-qty {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-item {
        padding: 1.25rem;
    }

    .checkout-item-main {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .checkout-item-image {
        width: 70px;
        height: 70px;
    }

    .checkout-product-name {
        font-size: var(--xit-fs-paragraph);
    }

    .checkout-item-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .checkout-item {
        padding: 1rem;
    }

    .checkout-item-image {
        width: 60px;
        height: 60px;
    }

    .checkout-qty-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .checkout-min-qty-badge {
        justify-content: center;
    }
}

/*end checkout form*/

/* ===========================
   XIT CARD COMPONENTS
   =========================== */

/* Base Card */
.xit-card {
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    border-radius: var(--xit-card-radius);
    box-shadow: 0 2px 12px color-mix(in srgb, var(--xit-color-base) 6%, transparent);
    margin-bottom: 2rem;
    overflow: hidden;
}

/* Card Header */
.xit-card-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    background: color-mix(in srgb, var(--xit-color-base) 2%, var(--xit-color-page-bg));
}

.xit-card-header-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-brand);
    margin: 0;
}

.xit-card-header-title svg {
    color: var(--xit-color-primary);
    flex-shrink: 0;
}

/* Card Body */
.xit-card-body {
    padding: 2rem;
}

.xit-card-body.xit-card-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Card Content */
.xit-card-content {
    flex: 1;
}

.xit-card-title {
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-brand);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.xit-card-subtitle {
    font-size: var(--xit-fs-title);
    color: color-mix(in srgb, var(--xit-color-base) 75%, transparent);
    margin: 0 0 1.5rem 0;
}

.xit-card-description {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 75%, transparent);
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.xit-card-message {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: color-mix(in srgb, var(--xit-color-brand) 8%, var(--xit-color-page-bg));
    border-left: 4px solid var(--xit-color-brand);
    border-radius: var(--xit-card-radius);
    margin: 1.5rem 0;
}

.xit-card-message svg {
    color: var(--xit-color-brand);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.xit-card-message p {
    font-size: var(--xit-fs-paragraph);
    color: var(--xit-color-base);
    line-height: 1.6;
    margin: 0;
}

.xit-card-message-text {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 80%, transparent);
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.xit-card-icon {
    margin-bottom: 1.5rem;
}

/* Card Variants */
.xit-card-success {
    border-color: var(--xit-color-success);
}

.xit-card-success .xit-card-icon svg {
    color: var(--xit-color-success);
}

.xit-card-info {
    border-color: color-mix(in srgb, var(--xit-color-primary) 30%, transparent);
}

.xit-card-warning {
    border-color: var(--xit-color-warning);
}

.xit-card-warning .xit-card-icon svg {
    color: var(--xit-color-warning);
}

/* ===========================
   XIT BUTTON COMPONENTS
   =========================== */

.xit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    text-decoration: none;
    border: none;
    border-radius: var(--xit-button-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.xit-button svg {
    flex-shrink: 0;
}

/* Button Sizes */
.xit-button-lg {
    padding: 1rem 2rem;
    font-size: var(--xit-fs-title);
}

.xit-button-md {
    padding: 0.8rem 1.4rem;
    font-size: var(--xit-fs-paragraph);
}

.xit-button-sm {
    padding: 0.5rem 1rem;
    font-size: var(--xit-fs-subtitle);
}

/* Button Primary */
.xit-button-primary {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

.xit-button-primary:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 90%, var(--xit-color-base));
    color: var(--xit-color-on-brand);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--xit-color-brand) 40%, transparent);
}

.xit-button-primary:active {
    transform: translateY(0);
}

/* Button Secondary */
.xit-button-secondary {
    background: color-mix(in srgb, var(--xit-color-base) 8%, var(--xit-color-page-bg));
    color: var(--xit-color-base);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 20%, transparent);
}

.xit-button-secondary:hover {
    background: color-mix(in srgb, var(--xit-color-base) 12%, var(--xit-color-page-bg));
    color: var(--xit-color-base);
    border-color: var(--xit-color-brand);
}

/* Button Outline */
.xit-button-outline {
    background: transparent;
    color: var(--xit-color-brand);
    border: 2px solid var(--xit-color-brand);
}

.xit-button-outline:hover {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
}

/* ===========================
   ORDER CONFIRMATION SPECIFIC
   =========================== */

/* Reference Number */
.order-confirmation-ref {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--xit-color-brand) 15%, var(--xit-color-page-bg)),
            color-mix(in srgb, var(--xit-color-primary) 15%, var(--xit-color-page-bg)));
    border: 2px solid var(--xit-color-brand);
    border-radius: var(--xit-card-radius);
    margin: 1.5rem 0;
}

.order-confirmation-ref-label {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 75%, transparent);
    font-weight: 500;
}

.order-confirmation-ref-number {
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-brand);
}

/* Steps List */
.xit-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.xit-step-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.xit-step-number {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    border-radius: 50%;
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-heading);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

.xit-step-content {
    flex: 1;
}

.xit-step-title {
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-brand);
    margin: 0 0 0.5rem 0;
}

.xit-step-desc {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 75%, transparent);
    line-height: 1.6;
    margin: 0;
}

/* Actions */
.order-confirmation-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .order-confirmation-page {
        padding: 2rem 0;
    }

    .xit-card-header,
    .xit-card-body {
        padding: 1.5rem;
    }

    .xit-card-title {
        font-size: var(--xit-fs-heading);
    }

    .xit-card-subtitle {
        font-size: var(--xit-fs-paragraph);
    }

    .order-confirmation-ref {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .order-confirmation-ref-number {
        font-size: var(--xit-fs-title);
    }

    .order-confirmation-actions {
        flex-direction: column;
    }

    .xit-button {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .xit-card-header,
    .xit-card-body {
        padding: 1.25rem;
    }

    .xit-card-title {
        font-size: var(--xit-fs-title);
    }

    .xit-card-header-title {
        font-size: var(--xit-fs-title);
    }

    .xit-step-number {
        width: 36px;
        height: 36px;
        font-size: var(--xit-fs-paragraph);
    }

    .xit-step-title {
        font-size: var(--xit-fs-paragraph);
    }

    .xit-step-desc {
        font-size: var(--xit-fs-subtitle);
    }
}

/* Blog List Page Specific Styles */
.blog-list-page {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Blog Grid Layout */
.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Empty State */
.blog-list-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    border-radius: var(--xit-card-radius);
    text-align: center;
}

.blog-list-empty-icon {
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--xit-color-base) 25%, transparent);
}

.blog-list-empty-title {
    font-size: var(--xit-fs-large);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0 0 1rem 0;
}

.blog-list-empty-text {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-list-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .blog-list-page {
        gap: 2rem;
    }

    .blog-list-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .blog-list-empty {
        padding: 3rem 1.5rem;
    }
}

/*end of blogs page style*/

/* Contact Page */

/* Header */
.xit-pg-header {
    text-align: center;
    margin-bottom: 3rem;
}

.xit-pg-title {
    font-size: var(--xit-fs-massive);
    font-weight: var(--xit-fw-massive);
    color: var(--xit-color-brand);
    margin: 0 0 0.75rem 0;
}

.xit-pg-subtitle {
    font-size: var(--xit-fs-title);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    margin: 0;
}

/* Section */
.contact-section {
    margin-bottom: 2.5rem;
}

.contact-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--xit-fs-heading);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0 0 2rem 0;
}

.contact-section-title svg {
    color: var(--xit-color-primary);
}

/* Company Info */
.contact-company-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-company-name {
    font-size: var(--xit-fs-heading);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-info-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 65%, transparent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-label svg {
    color: var(--xit-color-brand);
}

.contact-info-value {
    font-size: var(--xit-fs-paragraph);
    color: var(--xit-color-base);
    font-weight: 500;
    line-height: 1.6;
}

.contact-info-address {
    white-space: pre-line;
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contact-method-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: color-mix(in srgb, var(--xit-color-base) 3%, var(--xit-color-page-bg));
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    border-radius: var(--xit-card-radius);
    transition: all 0.3s ease;
}

.contact-method-item:hover {
    background: var(--xit-color-page-bg);
    border-color: color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 10%, transparent);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--xit-color-brand) 12%, var(--xit-color-page-bg));
    color: var(--xit-color-brand);
    border-radius: 50%;
}

.contact-method-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

/* Team Grid */
.xit-member-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.xit-member-card-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}



.xit-member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    border-radius: var(--xit-card-radius);
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px color-mix(in srgb, var(--xit-color-base) 6%, transparent);
}

.xit-member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--xit-color-brand) 15%, transparent);
    border-color: color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

.xit-member-avatar {
    width: 120px;
    height: 120px;
    margin-bottom: 1.25rem;
    border-radius: var(--xit-avatar-radius);
    overflow: hidden;
    border: 3px solid var(--xit-color-brand);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--xit-color-brand) 25%, transparent);
}

.xit-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xit-member-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--xit-color-brand) 12%, var(--xit-color-page-bg));
    color: var(--xit-color-brand);
}

.xit-member-name {
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0 0 0.5rem 0;
}

.xit-member-title {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-accent) 70%, transparent);
    margin: 0 0 1rem 0;
}

.contact-team-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: color-mix(in srgb, var(--xit-color-brand) 10%, var(--xit-color-page-bg));
    color: var(--xit-color-brand);
    border-radius: var(--xit-button-radius);
    font-size: var(--xit-fs-subtitle);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-team-email:hover {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
}

.contact-team-no-email {
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 50%, transparent);
}

/* Divider */
.xit-member-divider {
    width: 100%;
    margin: 0 0 1.25rem 0;
    border: none;
    height: 1px;
    background: color-mix(in srgb, var(--xit-color-base) 15%, transparent);
}

/* Extras Container */
.xit-member-extras {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

/* Extra Item */
.xit-member-card-extras {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    background: color-mix(in srgb, var(--xit-color-base) 4%, var(--xit-color-page-bg));
    border-radius: var(--xit-card-radius);
    transition: background 0.2s ease;
}

.xit-member-card-extras:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 8%, var(--xit-color-page-bg));
}

.xit-member-card-extras-label {
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 65%, transparent);
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.xit-member-card-extras-value {
    font-size: var(--xit-fs-paragraph);
    color: var(--xit-color-base);
    font-weight: 500;
    word-break: break-word;
    text-align: left;
}

/* Email Link */
.xit-member-email-link {
    color: var(--xit-color-brand);
    text-decoration: none;
    transition: color 0.3s ease;
}

.xit-member-email-link:hover {
    color: var(--xit-color-primary);
    text-decoration: underline;
}

/* Empty State */
.xit-member-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    border-radius: var(--xit-card-radius);
    text-align: center;
    min-height: 400px;
}

.xit-member-empty-icon {
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--xit-color-base) 25%, transparent);
}

.xit-member-empty-title {
    font-size: var(--xit-fs-large);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0 0 1rem 0;
}

.xit-member-empty-text {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    max-width: 500px;
    margin: 0;
    line-height: 1.6;
}



/* Map */
.contact-map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--xit-card-radius);
    overflow: hidden;
    border: 4px solid color-mix(in srgb, var(--xit-color-base) 40%, transparent);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--xit-color-base) 10%, transparent);
}

.contact-map-container iframe {
    border: none;
}

/* Empty State */
.contact-empty-text {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 60%, transparent);
    text-align: center;
    padding: 2rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-page-title {
        font-size: var(--xit-fs-large);
    }

    .contact-page-subtitle {
        font-size: var(--xit-fs-paragraph);
    }

    .contact-section-title {
        font-size: var(--xit-fs-heading);
    }

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

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

    .xit-emp-card-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 1.5rem 0;
    }

    .contact-header {
        margin-bottom: 2rem;
    }

    .contact-section {
        margin-bottom: 2rem;
    }

    .contact-team-avatar {
        width: 100px;
        height: 100px;
    }

    .contact-map-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-page-title {
        font-size: var(--xit-fs-heading);
    }

    .contact-page-subtitle {
        font-size: var(--xit-fs-subtitle);
    }

    .contact-section-title {
        font-size: var(--xit-fs-title);
        flex-direction: column;
        text-align: center;
    }

    .xit-emp-card-grid {
        grid-template-columns: 1fr;
    }

    .xit-member-card {
        padding: 1.5rem 1rem;
    }

    .contact-map-container {
        height: 300px;
    }
}

/*end contact page style*/

/* Gallery Page */

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

/* Gallery Item */
.gallery-item {
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    border-radius: var(--xit-card-radius);
    overflow: hidden;
    box-shadow: 0 2px 12px color-mix(in srgb, var(--xit-color-base) 6%, transparent);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
    border-color: color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

/* Image Wrapper */
.gallery-item-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: color-mix(in srgb, var(--xit-color-base) 5%, var(--xit-color-page-bg));
}

.gallery-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item-image img {
    transform: scale(1.08);
}

/* Dark bg for light logos */
.gallery-img-dark-bg {
    background-color: color-mix(in srgb, var(--xit-color-base) 90%, transparent) !important;
}

/* Hover Overlay */
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--xit-color-brand) 75%, transparent);
    color: var(--xit-color-on-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Caption */
.gallery-item-caption {
    padding: 0.75rem 1rem;
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 75%, transparent);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-top: 1px solid color-mix(in srgb, var(--xit-color-base) 8%, transparent);
}

/* Empty State */
.gallery-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
}

.gallery-empty-icon {
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--xit-color-base) 25%, transparent);
}

.gallery-empty-title {
    font-size: var(--xit-fs-large);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0 0 1rem 0;
}

.gallery-empty-text {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    margin: 0;
}

/* ===========================
   LIGHTBOX
   =========================== */

.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(4px);
    animation: galleryLightboxFadeIn 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
}

@keyframes galleryLightboxFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.gallery-lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, #fff 15%, transparent);
    color: #fff;
    border: 1px solid color-mix(in srgb, #fff 30%, transparent);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.gallery-lightbox-close:hover {
    background: color-mix(in srgb, #fff 25%, transparent);
    transform: scale(1.1) rotate(90deg);
}

.gallery-lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
    animation: galleryLightboxScale 0.3s ease;
}

@keyframes galleryLightboxScale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--xit-card-radius);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-caption {
    margin-top: 1.25rem;
    font-size: var(--xit-fs-paragraph);
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }

    .gallery-item-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .gallery-item-image {
        height: 150px;
    }

    .gallery-lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .gallery-empty {
        padding: 3rem 1.5rem;
    }
}

/*end gallery page*/


.xit-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin: 2.5rem 0 1rem;
}

.xit-pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--xit-button-radius);
    background: var(--xit-color-page-bg);
    color: var(--xit-color-base);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 20%, transparent);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.xit-pagination-btn:hover {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    border-color: var(--xit-color-brand);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

.xit-pagination-btn-disabled {
    color: color-mix(in srgb, var(--xit-color-base) 30%, transparent);
    border-color: color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    background: color-mix(in srgb, var(--xit-color-base) 4%, var(--xit-color-page-bg));
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
    box-shadow: none !important;
}

.xit-pagination-info {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 1rem;
    height: 40px;
    background: color-mix(in srgb, var(--xit-color-brand) 10%, var(--xit-color-page-bg));
    border: 1px solid color-mix(in srgb, var(--xit-color-brand) 25%, transparent);
    border-radius: var(--xit-button-radius);
}

.xit-pagination-current {
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
}

.xit-pagination-separator {
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 40%, transparent);
}

.xit-pagination-total {
    font-size: var(--xit-fs-paragraph);
    font-weight: 500;
    color: color-mix(in srgb, var(--xit-color-base) 65%, transparent);
}

@media (max-width: 576px) {
    .xit-pagination {
        justify-content: center;
    }

    .xit-pagination-btn {
        width: 36px;
        height: 36px;
    }

    .xit-pagination-info {
        height: 36px;
        padding: 0 0.75rem;
    }
}

/*end public pagination style*/


/*END ELEMENT CLASSES*/




/* Mobile Responsive */
@media (max-width: 768px) {
    .banner-nav {
        width: 32px;
        height: 32px;
    }

    .banner-nav svg {
        width: 18px;
        height: 18px;
    }

    .banner-prev {
        left: 0.5rem;
    }

    .banner-next {
        right: 0.5rem;
    }

    .banner-indicators {
        bottom: 0.75rem;
    }

    .banner-indicator {
        width: 6px;
        height: 6px;
    }

    .banner-indicator.active {
        width: 18px;
    }

    .hero-scene {
        padding: 1.5rem 1rem;
    }

    .dh-brand-name {
        font-size: var(--xit-fs-heading);
    }

    .dh-brand-tagline {
        font-size: var(--xit-fs-subtitle);
    }

    .dh-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .dh-stat-item {
        padding: 0.75rem;
    }

    .dh-stat-number {
        font-size: var(--xit-fs-title);
    }

    .dh-stat-label {
        font-size: 0.7rem;
    }

    .dh-service-icon-large {
        width: 70px;
        height: 70px;
    }

    .dh-service-icon-large svg {
        width: 40px;
        height: 40px;
    }

    .dh-service-title {
        font-size: var(--xit-fs-title);
    }

    .dh-cta-title {
        font-size: var(--xit-fs-heading);
    }

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

    .dh-cta-btn {
        justify-content: center;
    }

    .section-title {
        font-size: var(--xit-fs-title);
        gap: 0.5rem;
    }

    .see-all-link {
        font-size: var(--xit-fs-subtitle);
        padding: 0.4rem 0.75rem;
    }

    .see-all-link svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 576px) {
    .dh-brand-icon {
        width: 48px;
        height: 48px;
    }

    .dh-brand-icon svg {
        width: 32px;
        height: 32px;
    }

    .dh-scene-title {
        font-size: var(--xit-fs-title);
    }

    .dh-stats-grid {
        gap: 0.5rem;
    }

    .dh-stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .section-header {
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .section-icon {
        width: 20px;
        height: 20px;
    }
}






/* keyframes */

@keyframes indxBlogCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes partnerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes testimonialFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInAnswer {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dsCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fpCardSlide {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(-20px);
        opacity: 1;
    }
}

@keyframes fpCardSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fpImageZoom {
    from {
        transform: scale(1.1);
        opacity: 0.8;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }

    25% {
        transform: translate(20px, -20px) rotate(5deg);
        opacity: 0.6;
    }

    50% {
        transform: translate(10px, 10px) rotate(-3deg);
        opacity: 0.5;
    }

    75% {
        transform: translate(-15px, 15px) rotate(7deg);
        opacity: 0.7;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-12px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    to {
        transform: translateX(100%);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(91, 3, 89, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(91, 3, 89, 0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* ===========================
   XIT RICH TEXT STYLES
   Styles for CKEditor content display
   =========================== */

.xit-rich-text {
    color: var(--xit-color-base);
    line-height: 1.7;
    font-size: var(--xit-fs-paragraph);
    width: 100%;
}

/* ===========================
   HEADINGS
   =========================== */

.xit-rich-text h1,
.xit-rich-text h2,
.xit-rich-text h3,
.xit-rich-text h4,
.xit-rich-text h5,
.xit-rich-text h6 {
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.xit-rich-text h1:first-child,
.xit-rich-text h2:first-child,
.xit-rich-text h3:first-child,
.xit-rich-text h4:first-child {
    margin-top: 0;
}

.xit-rich-text h1 {
    font-size: var(--xit-fs-massive);
    font-weight: var(--xit-fw-massive);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
}

.xit-rich-text h2 {
    font-size: var(--xit-fs-large);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid color-mix(in srgb, var(--xit-color-base) 15%, transparent);
}

.xit-rich-text h3 {
    font-size: var(--xit-fs-heading);
}

.xit-rich-text h4 {
    font-size: var(--xit-fs-title);
}

.xit-rich-text h5 {
    font-size: var(--xit-fs-paragraph);
}

.xit-rich-text h6 {
    font-size: var(--xit-fs-subtitle);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===========================
   PARAGRAPHS
   =========================== */

.xit-rich-text p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.xit-rich-text p:last-child {
    margin-bottom: 0;
}

/* ===========================
   TEXT FORMATTING
   =========================== */

.xit-rich-text strong,
.xit-rich-text b {
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
}

.xit-rich-text em,
.xit-rich-text i {
    font-style: italic;
}

.xit-rich-text u {
    text-decoration: underline;
    text-decoration-color: var(--xit-color-brand);
    text-decoration-thickness: 2px;
}

.xit-rich-text s,
.xit-rich-text del {
    text-decoration: line-through;
    color: color-mix(in srgb, var(--xit-color-base) 60%, transparent);
}

.xit-rich-text mark {
    background: color-mix(in srgb, var(--xit-color-accent) 25%, transparent);
    color: var(--xit-color-base);
    padding: 0.1em 0.3em;
    border-radius: 3px;
}

/* Small/Tiny Text */
.xit-rich-text small,
.xit-rich-text .text-tiny {
    font-size: var(--xit-fs-subtitle);
}

/* ===========================
   LISTS
   =========================== */

.xit-rich-text ul,
.xit-rich-text ol {
    margin: 1.25rem 0;
    padding-left: 2rem;
}

.xit-rich-text ul {
    list-style-type: disc;
}

.xit-rich-text ol {
    list-style-type: decimal;
}

.xit-rich-text li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.xit-rich-text li:last-child {
    margin-bottom: 0;
}

/* Nested Lists */
.xit-rich-text ul ul,
.xit-rich-text ol ul {
    list-style-type: circle;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.xit-rich-text ul ul ul,
.xit-rich-text ol ul ul,
.xit-rich-text ol ol ul {
    list-style-type: square;
}

.xit-rich-text ol ol,
.xit-rich-text ul ol {
    list-style-type: lower-alpha;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Custom List Styling */
.xit-rich-text ul li::marker {
    color: var(--xit-color-brand);
}

.xit-rich-text ol li::marker {
    color: var(--xit-color-brand);
    font-weight: var(--xit-fw-title);
}

/* ===========================
   BLOCKQUOTE
   =========================== */

.xit-rich-text blockquote {
    position: relative;
    margin: 2rem 0;
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    background: color-mix(in srgb, var(--xit-color-primary) 8%, var(--xit-color-page-bg));
    border-left: 4px solid var(--xit-color-primary);
    border-radius: var(--xit-card-radius);
    font-style: italic;
}

.xit-rich-text blockquote::before {
    content: '"';
    position: absolute;
    left: 0.75rem;
    top: 0.5rem;
    font-size: 3rem;
    color: color-mix(in srgb, var(--xit-color-primary) 30%, transparent);
    font-family: Georgia, serif;
    line-height: 1;
}

.xit-rich-text blockquote p {
    margin-bottom: 0.75rem;
    color: color-mix(in srgb, var(--xit-color-base) 90%, transparent);
}

.xit-rich-text blockquote p:last-child {
    margin-bottom: 0;
}

.xit-rich-text blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    font-style: normal;
}

.xit-rich-text blockquote cite::before {
    content: '— ';
}

/* ===========================
   LINKS
   =========================== */

.xit-rich-text a {
    color: var(--xit-color-brand);
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--xit-color-brand) 40%, transparent);
    text-decoration-thickness: 2px;
    transition: all 0.3s ease;
}

.xit-rich-text a:hover {
    color: var(--xit-color-primary);
    text-decoration-color: var(--xit-color-primary);
}

/* ===========================
   IMAGES
   =========================== */

.xit-rich-text img {
    max-width: 100%;
    height: auto;
    border-radius: var(--xit-card-radius);
    margin: 1.5rem 0;
}

/* Image with caption */
.xit-rich-text figure {
    margin: 2rem 0;
}

.xit-rich-text figure img {
    margin: 0;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-base) 15%, transparent);
}

.xit-rich-text figcaption {
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    text-align: center;
    font-style: italic;
}

/* Image Alignment */
.xit-rich-text .image-style-align-left,
.xit-rich-text .image-left {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
    max-width: 50%;
}

.xit-rich-text .image-style-align-right,
.xit-rich-text .image-right {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    max-width: 50%;
}

.xit-rich-text .image-style-align-center,
.xit-rich-text .image-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   TABLES
   =========================== */

/* Override Bootstrap - Use !important to ensure our styles take precedence */
.xit-rich-text .table {
    --bs-table-bg: unset;
    border-color: unset;
}

.xit-rich-text table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: color-mix(in srgb, var(--xit-color-base)5%, transparent) !important;
}


.xit-rich-text table th {
    padding: 1rem;
    color: var(--xit-color-base);
    font-weight: var(--xit-fw-heading);
    font-size: var(--xit-fs-paragraph);
    border: 1px solid var(--xit-color-base);
}

.xit-rich-text table td {
    padding: 0.85rem 1rem;
    color: var(--xit-color-base);
    background: transparent;
    border: 1px solid var(--xit-color-base);
}

/* ===========================
   CODE
   =========================== */

.xit-rich-text code {
    padding: 0.2em 0.5em;
    background: color-mix(in srgb, var(--xit-color-base) 10%, var(--xit-color-page-bg));
    color: var(--xit-color-primary);
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
}

.xit-rich-text pre {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: color-mix(in srgb, var(--xit-color-base) 95%, transparent);
    color: var(--xit-color-page-bg);
    border-radius: var(--xit-card-radius);
    overflow-x: auto;
    border-left: 4px solid var(--xit-color-accent);
}

.xit-rich-text pre code {
    padding: 0;
    background: none;
    color: inherit;
    font-size: 0.9em;
    line-height: 1.6;
}

/* ===========================
   HORIZONTAL RULE
   =========================== */

.xit-rich-text hr {
    margin: 2.5rem 0;
    border: none;
    height: 2px;
    background: linear-gradient(to right,
            transparent,
            color-mix(in srgb, var(--xit-color-brand) 50%, transparent) 50%,
            transparent);
}

/* ===========================
   UTILITIES
   =========================== */

/* Text Alignment */
.xit-rich-text .text-left {
    text-align: left;
}

.xit-rich-text .text-center {
    text-align: center;
}

.xit-rich-text .text-right {
    text-align: right;
}

.xit-rich-text .text-justify {
    text-align: justify;
}

/* Clearfix for floated images */
.xit-rich-text::after {
    content: '';
    display: table;
    clear: both;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .xit-rich-text h1 {
        font-size: var(--xit-fs-large);
    }

    .xit-rich-text h2 {
        font-size: var(--xit-fs-heading);
    }

    .xit-rich-text h3 {
        font-size: var(--xit-fs-title);
    }

    .xit-rich-text blockquote {
        padding: 1.25rem 1.25rem 1.25rem 2rem;
    }

    .xit-rich-text .image-style-align-left,
    .xit-rich-text .image-style-align-right,
    .xit-rich-text .image-left,
    .xit-rich-text .image-right {
        float: none;
        margin: 1.5rem auto;
        max-width: 100%;
        display: block;
    }

    .xit-rich-text table {
        font-size: var(--xit-fs-subtitle);
    }

    .xit-rich-text table th,
    .xit-rich-text table td {
        padding: 0.65rem;
    }
}

@media (max-width: 576px) {
    .xit-rich-text {
        font-size: var(--xit-fs-subtitle);
    }

    .xit-rich-text h1 {
        font-size: var(--xit-fs-heading);
    }

    .xit-rich-text h2 {
        font-size: var(--xit-fs-title);
    }

    .xit-rich-text h3 {
        font-size: var(--xit-fs-paragraph);
    }

    .xit-rich-text ul,
    .xit-rich-text ol {
        padding-left: 1.5rem;
    }

    .xit-rich-text blockquote {
        padding: 1rem 1rem 1rem 1.75rem;
    }

    .xit-rich-text pre {
        padding: 1rem;
        font-size: 0.8em;
    }
}

/* end ck editor style*/

/* ===========================
   PRODUCT DETAIL PAGE (pd-)
   =========================== */

.pd-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    color: var(--xit-color-base);
}

/* ===========================
   TOP SECTION (Image + Details)
   =========================== */

.pd-top {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 2.5rem;
    align-items: start;
}

/* ===========================
   GALLERY
   =========================== */

.pd-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 100px;
}

.pd-main-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--xit-card-radius);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    background: var(--xit-color-page-bg);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--xit-color-base) 8%, transparent);
}

.pd-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.pd-main-image-wrap:hover .pd-main-image {
    transform: scale(1.04);
}

/* Thumbnails */
.pd-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.pd-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: var(--xit-card-radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid color-mix(in srgb, var(--xit-color-base) 15%, transparent);
    transition: all 0.2s ease;
    background: var(--xit-color-page-bg);
}

.pd-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pd-thumbnail:hover {
    border-color: color-mix(in srgb, var(--xit-color-brand) 50%, transparent);
    transform: translateY(-2px);
}

.pd-thumbnail:hover img {
    transform: scale(1.08);
}

.pd-thumbnail-active {
    border-color: var(--xit-color-brand);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
}

/* ===========================
   DETAILS COLUMN
   =========================== */

.pd-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pd-name {
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    text-transform: capitalize;
    line-height: 1.2;
    margin: 0;
}

/* Key Meta Grid */
.pd-meta-grid {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pd-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.6rem 1rem;
    background: color-mix(in srgb, var(--xit-color-base) 4%, var(--xit-color-page-bg));
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    border-radius: var(--xit-card-radius);
    min-width: 110px;
}

.pd-meta-label {
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 60%, transparent);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
}

.pd-meta-value {
    font-size: var(--xit-fs-paragraph);
    color: var(--xit-color-base);
    font-weight: 600;
}

/* UOM Price Table */
.pd-uom-table {
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    border-radius: var(--xit-card-radius);
    overflow: hidden;
}

.pd-uom-table-heading {
    font-size: var(--xit-fs-subtitle);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: color-mix(in srgb, var(--xit-color-base) 65%, transparent);
    margin: 0;
    padding: 0.6rem 1rem;
    background: color-mix(in srgb, var(--xit-color-base) 5%, var(--xit-color-page-bg));
    border-bottom: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
}

.pd-uom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid color-mix(in srgb, var(--xit-color-base) 8%, transparent);
    transition: background 0.2s ease;
}

.pd-uom-row:last-child {
    border-bottom: none;
}

.pd-uom-row:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 5%, var(--xit-color-page-bg));
}

.pd-uom-name {
    font-size: var(--xit-fs-paragraph);
    color: var(--xit-color-base);
}

.pd-uom-qty {
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 55%, transparent);
}

.pd-uom-price {
    font-size: var(--xit-fs-paragraph);
    font-weight: 700;
    color: var(--xit-color-brand);
}

/* Price */
.pd-price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--xit-color-brand) 10%, var(--xit-color-page-bg)),
            color-mix(in srgb, var(--xit-color-primary) 10%, var(--xit-color-page-bg)));
    border: 1px solid color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
    border-radius: var(--xit-card-radius);
}

.pd-price-currency {
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fs-title);
    color: color-mix(in srgb, var(--xit-color-brand) 80%, transparent);
}

.pd-price-amount {
    font-size: var(--xit-fs-title);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    line-height: 1;
}

/* Price on Request */
.pd-price-on-request {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    background: color-mix(in srgb, var(--xit-color-base) 6%, var(--xit-color-page-bg));
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 15%, transparent);
    border-radius: var(--xit-card-radius);
    font-size: var(--xit-fs-paragraph);
    font-weight: 600;
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
}

/* Add to Cart */
.pd-cart-action {
    padding-top: 0.5rem;
}

/* ===========================
   SHORT DESCRIPTION
   =========================== */

.pd-short-desc {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 75%, transparent);
    line-height: 1.7;
    margin: 0;
    padding: 1.25rem;
    background: color-mix(in srgb, var(--xit-color-base) 3%, var(--xit-color-page-bg));
    border-left: 3px solid var(--xit-color-brand);
    border-radius: var(--xit-card-radius);
}

/* ===========================
   SPECS GRID
   =========================== */

.pd-specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    padding: 1.25rem;
    background: color-mix(in srgb, var(--xit-color-base) 3%, var(--xit-color-page-bg));
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    border-radius: var(--xit-card-radius);
}

.pd-spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pd-spec-label {
    font-size: var(--xit-fs-subtitle);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
    color: color-mix(in srgb, var(--xit-color-base) 55%, transparent);
}

.pd-spec-value {
    font-size: var(--xit-fs-paragraph);
    font-weight: 500;
    color: var(--xit-color-base);
}

/* ===========================
   SECTION TITLE
   =========================== */

.pd-section-title {
    font-size: var(--xit-fs-heading);
    font-weight: var(--xit-fw-heading);
    color: var(--xit-color-brand);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
}

/* ===========================
   DESCRIPTION
   =========================== */

.pd-description {
    padding-top: 0.5rem;
}

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

.pd-reviews {
    padding-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ===========================
   REVIEW CTA
   =========================== */

.pd-review-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem;
    margin: 1rem 0rem;
    background: color-mix(in srgb, var(--xit-color-brand) 6%, var(--xit-color-page-bg));
    border: 1px solid color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
    border-radius: var(--xit-card-radius);
    flex-wrap: wrap;
}

.pd-review-cta-text {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 80%, transparent);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 991px) {
    .pd-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pd-gallery {
        position: static;
    }

    .pd-main-image-wrap {
        aspect-ratio: 4 / 3;
    }

    .pd-name {
        font-size: var(--xit-fs-heading);
    }
}

@media (max-width: 768px) {
    .pd-wrapper {
        gap: 2rem;
    }

    .pd-thumbnail {
        width: 52px;
        height: 52px;
    }

    .pd-price-amount {
        font-size: var(--xit-fs-title);
    }

    .pd-specs {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .pd-review-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .pd-main-image-wrap {
        aspect-ratio: 1 / 1;
    }

    .pd-thumbnail {
        width: 46px;
        height: 46px;
    }

    .pd-meta-grid {
        gap: 0.5rem;
    }

    .pd-meta-item {
        min-width: 90px;
    }

    .pd-specs {
        grid-template-columns: 1fr 1fr;
    }
}

/*end product detail page*/


/*------------------------
--------------------------
Css for advance design  elements
Initially i wanted to create another file, because this file has become very big.
still i put in the same file, because of  no real performance issue.
--------------------------
--------------------------*/

/* ===========================
   CUSTOMIZE PAGE LAYOUT
   =========================== */

/* Top Bar */
.cust-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cust-topbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cust-sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #dee2e6;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.cust-sidebar-toggle:hover {
    background: #f8f9fa;
    border-color: #0d6efd;
}

.cust-topbar-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    color: #212529;
    text-decoration: none;
}

.cust-topbar-title svg {
    color: #0d6efd;
}

.cust-topbar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Layout Container */
.cust-layout {
    position: relative;
    height: calc(100vh - 57px);
    overflow: hidden;
}

/* Sidebar - Off-canvas overlay */
.cust-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: #f8f9fa;
    border-right: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    z-index: 1040;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
}

.cust-sidebar.active {
    transform: translateX(0);
}

.cust-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #dee2e6;
    background: #fff;
}

.cust-sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #212529;
}

.cust-sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    color: #6c757d;
    transition: all 0.2s;
}

.cust-sidebar-close:hover {
    background: #e9ecef;
    color: #212529;
}

.cust-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.cust-sidebar-section {
    margin-bottom: 1.5rem;
}

.cust-sidebar-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin: 0 0 0.5rem 0;
    padding: 0 1.25rem;
}

.cust-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1.25rem;
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.cust-sidebar-link:hover,
.cust-sidebar-link.active {
    background: #fff;
    color: #0d6efd;
    border-left-color: #0d6efd;
}

.cust-sidebar-link svg {
    flex-shrink: 0;
}

/* Main Content - Full width always */
.cust-main {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #fff;
}

/* Form Styling (from your original) */
.existing-form {
    border-left: 4px solid #0d6efd;
}

.new-form {
    border-left: 4px solid #198754;
    background-color: #f8fff9;
}

.form-check-input:checked {
    background-color: #dc3545;
    border-color: #dc3545;
}

/* Backdrop overlay when sidebar is open */
.cust-backdrop {
    position: fixed;
    inset: 0;
    top: 57px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cust-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    .cust-topbar-title {
        font-size: 1rem;
    }

    .cust-topbar-title svg {
        display: none;
    }
}

/*add element btn*/
/* Add element button */
.add_element_btn {
    width: 100%;
    padding: 2rem;
    background-color: color-mix(in srgb, var(--xit-color-accent) 5%, var(--xit-color-page-bg));
    color: var(--xit-color-accent);
    font-weight: var(--xit-fw-title);
    font-size: var(--xit-fs-title);
    border: 2px dashed var(--xit-color-accent);
    transition: all 0.2s ease;
    align-items: center;
    gap: 0.5rem;
}

/* Hidden message */
.add-element-btn-message {
    display: none;
    font-size: var(--xit-fs-paragraph);
    font-weight: var(--xit-fw-paragraph);
    transition: all 0.2s ease;
}

/* Show on hover */
.add_element_btn:hover .add-element-btn-message {
    display: block;
    width: 100%;
}

/* ===========================
   CUSTOM ELEMENT - BANNER
   =========================== */

.cust-el-wrapper {
    padding: 3rem 0;
    position: relative;
}

.cust-el-edit-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem;
    font-size: var(--xit-fs-subtitle);
    font-weight: 600;
    text-decoration: none;
    background: var(--xit-color-accent);
    color: var(--xit-color-on-accent);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--xit-color-accent) 35%, transparent);
    transition: all 0.2s ease;
}

.cust-el-edit-btn:hover {
    background: var(--xit-color-brand);
    color: var(--xit-color-on-brand);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--xit-color-brand) 35%, transparent);
    transform: translateY(-1px);
}

/* Tooltip */
.cust-el-edit-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 50%;
    right: calc(100% + 0.6rem);
    transform: translateY(-50%);
    color: var(--xit-color-brand);
    font-size: var(--xit-fs-subtitle);
    font-weight: 500;
    white-space: nowrap;
    padding: 0.3rem 0.7rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cust-el-edit-btn:hover::after {
    opacity: 1;
}

/* Section Header */
.cust-el-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.cust-el-section-title {
    font-size: var(--xit-fs-large);
    font-weight: var(--xit-fw-massive);
    color: var(--xit-color-brand);
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

.cust-el-section-subtitle {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 70%, transparent);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Banner Container */
.cust-el-banner-single {
    width: 100%;
    overflow: hidden;
    border-radius: var(--xit-card-radius);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    transition: all 0.3s ease;
    aspect-ratio: 16 / 5;
}

.cust-el-banner-single:hover {
    box-shadow: 0 8px 32px color-mix(in srgb, var(--xit-color-base) 15%, transparent);
    transform: translateY(-4px);
}

/* Banner Link */
.cust-el-banner-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.cust-el-banner-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 60%,
            color-mix(in srgb, var(--xit-color-brand) 20%, transparent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cust-el-banner-link:hover::after {
    opacity: 1;
}

/* Banner Image */
.cust-el-banner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.cust-el-banner-link:hover .cust-el-banner-image {
    transform: scale(1.03);
}

/* Non-clickable banner (no link) */
.cust-el-banner-single:not(:has(a)) .cust-el-banner-image {
    cursor: default;
}

/* Responsive */
@media (max-width: 991px) {
    .cust-el-wrapper {
        padding: 2.5rem 0;
    }

    .cust-el-header {
        margin-bottom: 2rem;
    }

    .cust-el-section-title {
        font-size: var(--xit-fs-heading);
    }
}

@media (max-width: 576px) {
    .cust-el-banner-single {
        border-radius: 0;
    }

    .cust-el-wrapper {
        padding: 2rem 0;
    }

    .cust-el-header {
        margin-bottom: 1.5rem;
    }

    .cust-el-section-title {
        font-size: var(--xit-fs-title);
    }

    .cust-el-section-subtitle {
        font-size: var(--xit-fs-subtitle);
    }
}


.cd-banner-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--xit-card-radius);
    background: var(--xit-color-page-bg);
    aspect-ratio: 16 / 5;
}

/* ── Slides track ── */
.cd-banner-carousel .cd-banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.cd-banner-carousel .cd-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.cd-banner-carousel .cd-banner-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.cd-banner-carousel .cd-banner-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.cd-banner-carousel .cd-banner-slide img.carousel-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── Nav buttons ── */
.cd-banner-carousel .cd-banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid color-mix(in srgb, var(--xit-color-on-brand) 30%, transparent);
    color: var(--xit-color-on-brand);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    opacity: 0;
    padding: 0;
}

.cd-banner-carousel:hover .cd-banner-nav {
    opacity: 1;
}

.cd-banner-carousel .cd-banner-nav:hover {
    background: color-mix(in srgb, var(--xit-color-brand) 60%, transparent);
    color: var(--xit-color-on-brand);
    transform: translateY(-50%) scale(1.1);
}

.cd-banner-carousel .cd-banner-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.cd-banner-carousel .cd-banner-prev {
    left: 14px;
}

.cd-banner-carousel .cd-banner-next {
    right: 14px;
}

/* ── Dot indicators ── */
.cd-banner-carousel .cd-banner-indicators {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 6px;
    align-items: center;
}

.cd-banner-carousel .cd-banner-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: color-mix(in srgb, var(--xit-color-on-brand) 45%, transparent);
    cursor: pointer;
    transition: background 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
}

.cd-banner-carousel .cd-banner-indicator.active {
    background: var(--xit-color-accent);
    width: 24px;
    border-radius: 4px;
}

/* ── Single slide: hide controls ── */
.cd-banner-carousel.cd-single .cd-banner-nav,
.cd-banner-carousel.cd-single .cd-banner-indicators {
    display: none;
}

/* ── Mobile ── */
@media (max-width: 576px) {
    .cd-banner-carousel {
        border-radius: 0;
    }

    .cd-banner-carousel .cd-banner-nav {
        width: 32px;
        height: 32px;
        opacity: 1;
    }

    .cd-banner-carousel .cd-banner-prev {
        left: 8px;
    }

    .cd-banner-carousel .cd-banner-next {
        right: 8px;
    }
}

/* ── cd-video-wrapper ── */
.cd-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--xit-card-radius);
    overflow: hidden;
    background: var(--xit-color-base);
}

.cd-video-wrapper .video-bg-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 576px) {
    .cd-video-wrapper {
        border-radius: 0;
    }
}

/* ============================================
   img-content shared base styles
   ============================================ */

[class*="-img-content-item"] {
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    border-radius: var(--xit-card-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

[class*="-img-content-link"] {
    text-decoration: none;
    color: inherit;
}

[class*="-img-content-image"] {
    position: relative;
    overflow: hidden;
    background: color-mix(in srgb, var(--xit-color-base) 5%, var(--xit-color-page-bg));
}

[class*="-img-content-image"] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

[class*="-img-content-item"]:hover [class*="-img-content-image"] img {
    transform: scale(1.05);
}

[class*="-img-content-pre-title"] {
    font-size: var(--xit-fs-subtitle);
    color: color-mix(in srgb, var(--xit-color-base) 65%, transparent);
    font-weight: 500;
}

[class*="-img-content-title"] {
    font-weight: var(--xit-fw-title);
    font-size: var(--xit-fs-title);
    color: var(--xit-color-brand);
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

[class*="-img-content-item"]:hover [class*="-img-content-title"] {
    color: var(--xit-color-primary);
}

[class*="-img-content-desc"] {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 75%, transparent);
    line-height: 1.6;
    margin: 0;
}

[class*="-img-content-cta"] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--xit-fw-title);
    color: var(--xit-color-brand);
    transition: all 0.3s ease;
    margin-top: auto;
}

[class*="-img-content-item"]:hover [class*="-img-content-cta"] {
    gap: 0.75rem;
}

[class*="-img-content-cta"] svg {
    transition: transform 0.3s ease;
}

[class*="-img-content-item"]:hover [class*="-img-content-cta"] svg {
    transform: translateX(4px);
}


/* ============================================
   cd-col-1-img-content : 1 Column
   Image and content side by side
   ============================================ */

.cd-col-1-img-content-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--xit-color-base) 8%, transparent);
}

.cd-col-1-img-content-item:hover {
    box-shadow: 0 8px 32px color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    transform: translateY(-4px);
}

.cd-col-1-img-content-link {
    display: contents;
}

.cd-col-1-img-content-image {
    height: 400px;
}

.cd-col-1-img-content-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    padding: 2.5rem;
}

.cd-col-1-img-content-cta {
    font-size: var(--xit-fs-title);
}

@media (max-width: 991px) {
    .cd-col-1-img-content-item {
        grid-template-columns: 1fr;
    }

    .cd-col-1-img-content-image {
        height: 320px;
    }

    .cd-col-1-img-content-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .cd-col-1-img-content-image {
        height: 260px;
    }

    .cd-col-1-img-content-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .cd-col-1-img-content-image {
        height: 220px;
    }

    .cd-col-1-img-content-content {
        padding: 1.25rem;
        gap: 1rem;
    }
}


/* ============================================
   cd-col-2-img-content : 2 Column
   Two items side by side, image top content bottom
   ============================================ */

.cd-col-2-img-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cd-col-2-img-content-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 12px color-mix(in srgb, var(--xit-color-base) 6%, transparent);
}

.cd-col-2-img-content-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--xit-color-brand) 15%, transparent);
    border-color: color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

.cd-col-2-img-content-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cd-col-2-img-content-image {
    height: 260px;
    flex-shrink: 0;
}

.cd-col-2-img-content-content {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.75rem;
    flex-grow: 1;
}

.cd-col-2-img-content-desc {
    flex-grow: 1;
}

.cd-col-2-img-content-cta {
    font-size: var(--xit-fs-paragraph);
}

@media (max-width: 768px) {
    .cd-col-2-img-content-wrapper {
        grid-template-columns: 1fr;
    }

    .cd-col-2-img-content-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .cd-col-2-img-content-image {
        height: 200px;
    }

    .cd-col-2-img-content-content {
        padding: 1.25rem;
    }
}


/* ============================================
   cd-col-3-img-content : 3 Column
   Image fills card, content reveals on hover
   ============================================ */

.cd-col-3-img-content-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cd-col-3-img-content-item {
    position: relative;
    height: 380px;
    box-shadow: 0 4px 16px color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    cursor: pointer;
}

.cd-col-3-img-content-item:hover {
    box-shadow: 0 12px 36px color-mix(in srgb, var(--xit-color-brand) 20%, transparent);
    transform: translateY(-4px);
}

.cd-col-3-img-content-link {
    display: block;
    width: 100%;
    height: 100%;
}

.cd-col-3-img-content-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.cd-col-3-img-content-item:hover .cd-col-3-img-content-image img {
    transform: scale(1.08);
}

.cd-col-3-img-content-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            color-mix(in srgb, var(--xit-color-brand) 60%, transparent) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: var(--xit-card-radius);
}

.cd-col-3-img-content-item:hover::before {
    opacity: 1;
}

.cd-col-3-img-content-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: color-mix(in srgb, var(--xit-color-page-bg) 75%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid color-mix(in srgb, var(--xit-color-base) 10%, transparent);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.cd-col-3-img-content-item:hover .cd-col-3-img-content-content {
    transform: translateY(0);
    opacity: 1;
}

.cd-col-3-img-content-cta {
    font-size: var(--xit-fs-paragraph);
    margin-top: 0.25rem;
}

@media (max-width: 991px) {
    .cd-col-3-img-content-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cd-col-3-img-content-wrapper {
        grid-template-columns: 1fr;
    }

    .cd-col-3-img-content-item {
        height: 320px;
    }
}

/* ============================================
   cd-feature-list : Feature List
   2, 3, or 4 column icon/logo + title + subtitle
   ============================================ */

.cd-feature-list-wrapper {
    display: grid;
    grid-template-columns: repeat(var(--col-count, 3), 1fr);
    gap: 1.5rem;
}

.cd-feature-list-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 2rem 1.75rem;
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    border-radius: var(--xit-card-radius);
    box-shadow: 0 2px 12px color-mix(in srgb, var(--xit-color-base) 6%, transparent);
    transition: all 0.3s ease;
}

.cd-feature-list-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--xit-color-brand) 12%, transparent);
    border-color: color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

.cd-feature-list-logo {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.cd-feature-list-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cd-feature-list-title {
    font-weight: var(--xit-fw-title);
    font-size: var(--xit-fs-title);
    color: var(--xit-color-brand);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.cd-feature-list-item:hover .cd-feature-list-title {
    color: var(--xit-color-primary);
}

.cd-feature-list-subtitle {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 75%, transparent);
    line-height: 1.6;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .cd-feature-list-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cd-feature-list-wrapper {
        grid-template-columns: 1fr;
    }

    .cd-feature-list-item {
        padding: 1.5rem 1.25rem;
    }
}

/* ============================================
   cd-content-card : Content Card
   1, 2, 3, or 4 column text-only cards
   ============================================ */

.cd-content-card-wrapper {
    display: grid;
    grid-template-columns: repeat(var(--col-count, 2), 1fr);
    gap: 1.5rem;
}

.cd-content-card-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem 1.75rem;
    background: var(--xit-color-page-bg);
    border: 1px solid color-mix(in srgb, var(--xit-color-base) 12%, transparent);
    border-radius: var(--xit-card-radius);
    box-shadow: 0 2px 12px color-mix(in srgb, var(--xit-color-base) 6%, transparent);
    transition: all 0.3s ease;
}

.cd-content-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--xit-color-brand) 12%, transparent);
    border-color: color-mix(in srgb, var(--xit-color-brand) 30%, transparent);
}

.cd-content-card-pre-title {
    font-size: var(--xit-fs-subtitle);
    font-weight: 500;
    color: var(--xit-color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cd-content-card-title {
    font-weight: var(--xit-fw-title);
    font-size: var(--xit-fs-title);
    color: var(--xit-color-brand);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.cd-content-card-item:hover .cd-content-card-title {
    color: var(--xit-color-primary);
}

.cd-content-card-desc {
    font-size: var(--xit-fs-paragraph);
    color: color-mix(in srgb, var(--xit-color-base) 75%, transparent);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .cd-content-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cd-content-card-wrapper {
        grid-template-columns: 1fr;
    }

    .cd-content-card-item {
        padding: 1.5rem 1.25rem;
    }
}