:root {
    --ist-primary: #E85C30;
    --ist-ink: #101418;
    --ist-muted: #667085;
    --ist-line: #e6e8ec;
    --ist-soft: #f6faf9;
    --ist-dark: #121821;
    --ist-admin: #243447;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: visible;
    overflow-y: visible;
}

body.page-enter,
body.page-ready {
    opacity: 1;
    transform: none;
}

.ist-section {
    padding: 110px 0;
}

.ist-section.compact {
    padding: 70px 0;
}

.ist-eyebrow {
    color: var(--ist-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
    margin-bottom: 14px;
}

.ist-hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(16, 20, 24, .82), rgba(16, 20, 24, .42)), url('/assets/imgs/gallery/img-s-56.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.ist-hero h1 {
    max-width: 970px;
    font-size: clamp(46px, 7vw, 92px);
    line-height: .98;
    margin-bottom: 28px;
}

.ist-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, .82);
    font-size: 19px;
    line-height: 1.65;
}

.ist-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.ist-btn,
.ist-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    border-radius: 7px;
    padding: 13px 22px;
    font-weight: 700;
    border: 1px solid var(--ist-primary);
    text-decoration: none;
}

.ist-btn {
    color: #fff;
    background: var(--ist-primary);
}

.ist-btn-outline {
    color: inherit;
    background: transparent;
}

.ist-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.ist-card {
    border: 1px solid var(--ist-line);
    border-radius: 8px;
    background: #fff;
    padding: 28px;
    min-height: 100%;
    transition: transform .18s ease, box-shadow .18s ease;
}

.ist-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(16, 24, 40, .08);
}

.ist-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 22px;
}

.ist-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.ist-card p,
.ist-muted {
    color: var(--ist-muted);
    line-height: 1.7;
}

.ist-breadcrumb {
    padding: 150px 0 70px;
    background: var(--ist-soft);
}

.ist-breadcrumb h1 {
    font-size: clamp(36px, 5vw, 70px);
    margin-bottom: 12px;
}

.ist-prose {
    max-width: 920px;
}

.ist-prose p,
.ist-prose li {
    color: var(--ist-muted);
    font-size: 18px;
    line-height: 1.8;
}

.ist-form {
    display: grid;
    gap: 16px;
}

.ist-form label {
    font-weight: 700;
    color: var(--ist-ink);
}

.ist-form input,
.ist-form select,
.ist-form textarea {
    width: 100%;
    border: 1px solid var(--ist-line);
    border-radius: 8px;
    padding: 13px 14px;
    background: #fff;
}

.ist-form textarea {
    min-height: 140px;
}

.ist-hidden {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ist-alert {
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 18px;
    background: #ecfdf3;
    color: #05603a;
    border: 1px solid #abefc6;
}

.ist-alert.error {
    background: #fef3f2;
    color: #b42318;
    border-color: #fecdca;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #f4f7fb;
    color: #17212f;
}

.admin-sidebar {
    background: linear-gradient(180deg, #223249, #172232);
    color: #d8e0ea;
    padding: 24px 18px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: auto;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    color: #fff;
    font-weight: 800;
}

.admin-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
}

.admin-nav {
    display: grid;
    gap: 6px;
}

.admin-nav a {
    color: #d8e0ea;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 12px;
    border-radius: 8px;
    text-decoration: none;
}

.admin-nav a.active,
.admin-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .12);
}

.admin-main {
    padding: 28px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
}

.admin-panel,
.admin-card {
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(21, 35, 56, .06);
}

.admin-panel {
    padding: 22px;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.admin-card {
    padding: 22px;
}

.admin-card span {
    color: #667085;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.admin-card strong {
    display: block;
    font-size: 34px;
    margin-top: 8px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 13px 12px;
    border-bottom: 1px solid #edf0f5;
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: #667085;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.admin-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-btn,
.admin-btn-muted,
.admin-btn-danger {
    border: 0;
    border-radius: 7px;
    padding: 10px 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.admin-btn {
    background: var(--ist-primary);
    color: #fff;
}

.admin-btn-muted {
    background: #eef2f7;
    color: #243447;
}

.admin-btn-danger {
    background: #fee4e2;
    color: #b42318;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.admin-field.full {
    grid-column: 1 / -1;
}

.admin-field label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
    width: 100%;
    border: 1px solid #d9e0ea;
    border-radius: 8px;
    padding: 12px 13px;
    background: #fff;
}

.admin-field textarea {
    min-height: 170px;
}

.permission-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.permission-box {
    border: 1px solid #e5e9f0;
    border-radius: 8px;
    padding: 14px;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-detail-item,
.admin-json-view {
    border: 1px solid #e5e9f0;
    border-radius: 8px;
    background: #f8fafc;
    padding: 16px;
}

.admin-detail-item.full {
    grid-column: 1 / -1;
}

.admin-detail-item span {
    display: block;
    color: #667085;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.admin-detail-item strong {
    overflow-wrap: anywhere;
}

.admin-detail-item pre,
.admin-json-view pre {
    max-height: 520px;
    margin: 0;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.admin-json-view h2 {
    font-size: 22px;
    margin-bottom: 14px;
}

.shop-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.shop-heading h2 {
    max-width: 780px;
    margin-bottom: 10px;
}

.shop-filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(140px, 1fr)) auto;
    gap: 14px;
    align-items: end;
    border: 1px solid var(--ist-line);
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 30px;
    background: #fff;
}

.shop-filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--ist-ink);
    font-weight: 800;
}

.shop-filter-panel input,
.shop-filter-panel select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--ist-line);
    border-radius: 8px;
    padding: 10px 12px;
}

.shop-filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.product-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card {
    border: 1px solid var(--ist-line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(16, 24, 40, .08);
}

.product-card__image {
    display: block;
    background: #f5f7fa;
}

.product-card__image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.product-card__meta,
.product-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-card__meta {
    color: var(--ist-muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-card h3 {
    font-size: 24px;
    line-height: 1.18;
    margin: 0;
}

.product-card p {
    color: var(--ist-muted);
    line-height: 1.65;
}

.product-card__bottom {
    margin-top: auto;
}

.empty-state {
    grid-column: 1 / -1;
    border: 1px solid var(--ist-line);
    border-radius: 8px;
    padding: 28px;
    background: #fff;
}

.whatsapp-widget {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 120;
}

.whatsapp-widget__toggle {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    box-shadow: 0 16px 36px rgba(37, 211, 102, .34);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-widget__toggle i {
    font-size: 30px;
}

.whatsapp-widget__toggle:hover,
.whatsapp-widget.is-open .whatsapp-widget__toggle {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 20px 46px rgba(37, 211, 102, .42);
}

.whatsapp-widget__panel {
    position: absolute;
    left: 0;
    bottom: 72px;
    width: min(300px, calc(100vw - 32px));
    border: 1px solid rgba(16, 24, 40, .1);
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(16, 24, 40, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.whatsapp-widget:hover .whatsapp-widget__panel,
.whatsapp-widget.is-open .whatsapp-widget__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-widget__panel strong {
    display: block;
    color: var(--ist-ink);
    font-size: 18px;
    margin-bottom: 6px;
}

.whatsapp-widget__panel p {
    color: var(--ist-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.whatsapp-widget__panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--ist-ink);
    text-decoration: none;
    font-weight: 800;
}

.whatsapp-widget__panel a:first-of-type {
    background: #e9fbf1;
    color: #087a3b;
}

.whatsapp-widget__panel a:hover {
    background: #f2f4f7;
}

.body-ai-agency .ist-breadcrumb {
    padding: 180px 0 90px;
    background: #f3f0e7;
    overflow: hidden;
}

.body-ai-agency .ist-breadcrumb h1 {
    color: #111;
    letter-spacing: 0;
    word-break: normal;
    overflow-wrap: anywhere;
}

.body-ai-agency .ist-breadcrumb nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: #555;
}

.body-ai-agency .ist-section {
    background: #fff;
    overflow: clip;
}

.body-ai-agency .ist-card-grid {
    align-items: stretch;
}

.body-ai-agency .ist-card,
.body-ai-agency .admin-panel {
    overflow: hidden;
}

.body-ai-agency .ist-card h3,
.body-ai-agency .ist-card p,
.body-ai-agency .ist-prose,
.body-ai-agency .ist-prose p,
.body-ai-agency .ist-prose li {
    overflow-wrap: anywhere;
}

.body-ai-agency .ist-card img,
.body-ai-agency .ist-prose img {
    display: block;
    max-width: 100%;
    height: auto;
}

.body-ai-agency .ist-form input,
.body-ai-agency .ist-form select,
.body-ai-agency .ist-form textarea {
    min-width: 0;
}

.body-ai-agency .admin-table {
    min-width: 720px;
}

.body-ai-agency .footer-area {
    margin-top: 0;
}

#smooth-wrapper,
#smooth-content,
.body-wrapper {
    max-width: 100%;
    overflow-x: hidden;
}

#has_smooth:not(.has-smooth) + #smooth-wrapper {
    height: auto !important;
    overflow: visible !important;
    position: static !important;
}

#has_smooth:not(.has-smooth) + #smooth-wrapper #smooth-content {
    overflow: visible !important;
    transform: none !important;
}

@media (max-width: 1199px) {
    .header-area .header__nav,
    .header-area .header__button {
        display: none !important;
    }

    .header-area .header-area__inner {
        min-height: 78px;
    }

    .header-area .header__logo img {
        max-width: 92px;
        height: auto;
    }

    .header-area .header__navicon {
        margin-left: auto;
    }
}

@media (max-width: 992px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .ist-hero {
        min-height: 590px;
    }
}

@media (max-width: 767px) {
    .body-ai-agency .ist-breadcrumb {
        padding: 135px 0 58px;
    }

    .body-ai-agency .ist-section {
        padding: 72px 0;
    }

    .body-ai-agency .ist-card {
        padding: 22px;
    }

    .body-ai-agency .d-flex.justify-content-between {
        align-items: flex-start !important;
    }
}

.agency-kicker {
    color: var(--ist-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.agency-hero {
    padding: 165px 0 95px;
    background:
        radial-gradient(circle at 78% 20%, rgba(243, 90, 45, .16), transparent 34%),
        linear-gradient(180deg, #fbfaf4 0%, #fff 100%);
    overflow: hidden;
}

.agency-hero__grid,
.agency-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
    gap: 70px;
    align-items: center;
}

.agency-hero h1 {
    max-width: 980px;
    color: #111;
    font-size: clamp(46px, 6.8vw, 94px);
    line-height: .94;
    letter-spacing: 0;
    margin-bottom: 28px;
}

.agency-hero:not(.home-hero) {
    padding: 145px 0 78px;
}

.agency-hero:not(.home-hero) h1 {
    max-width: 820px;
    font-size: clamp(44px, 5.4vw, 78px);
    line-height: 1;
}

.agency-hero:not(.home-hero) p {
    max-width: 680px;
}

.agency-hero p,
.agency-muted,
.agency-prose p {
    color: #5f6978;
    font-size: 18px;
    line-height: 1.75;
}

.agency-hero__media {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #f1f3f5;
    min-height: 410px;
}

.agency-hero__media img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    display: block;
}

.shop-hero .agency-hero__media img {
    object-position: center;
}

.hero-orb-card {
    box-shadow: 0 34px 90px rgba(17, 24, 39, .14);
}

.hero-stat {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: grid;
    gap: 4px;
    width: min(240px, calc(100% - 48px));
    padding: 22px;
    border-radius: 18px;
    color: #fff;
    background: rgba(17, 17, 17, .78);
    backdrop-filter: blur(14px);
}

.hero-stat strong {
    font-size: 48px;
    line-height: 1;
}

.agency-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-top: 34px;
}

.agency-link,
.agency-card__link {
    color: #111;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.agency-section {
    padding: 110px 0;
    background: #fff;
    overflow: hidden;
}

.agency-section--soft {
    background: #f5f2ea;
}

.agency-section--dark {
    color: #fff;
    background: #101010;
}

.agency-section__header {
    max-width: 880px;
    margin-bottom: 54px;
}

.agency-section__header h2,
.agency-split h2,
.agency-cta h2 {
    color: #111;
    font-size: clamp(34px, 4.8vw, 70px);
    line-height: 1;
    letter-spacing: 0;
}

.agency-section--dark .agency-section__header h2,
.agency-section--dark .agency-step p {
    color: #fff;
}

.agency-card-grid,
.agency-feature-grid,
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.agency-card,
.agency-feature,
.package-card,
.contact-panel,
.contact-form-card,
.empty-state {
    border: 1px solid #e3e5e8;
    border-radius: 18px;
    background: #fff;
    padding: 28px;
    min-width: 0;
}

.agency-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.agency-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 8px;
}

.agency-card h2,
.agency-card h3,
.agency-feature h3,
.package-card h2,
.contact-panel h2 {
    color: #111;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: 0;
}

.agency-card p,
.agency-feature p,
.package-card p,
.contact-panel p {
    color: #647084;
    line-height: 1.7;
}

.agency-card__link {
    margin-top: auto;
    width: fit-content;
}

.agency-feature {
    min-height: 190px;
}

.agency-feature--check {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.agency-feature--check span {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--ist-primary);
    position: relative;
}

.agency-feature--check span::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    width: 9px;
    height: 13px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.agency-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.agency-tags span {
    border: 1px solid #d9dde3;
    border-radius: 999px;
    padding: 11px 16px;
    color: #111;
    background: #fff;
    font-weight: 800;
}

.agency-steps {
    display: grid;
    gap: 14px;
}

.agency-step {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    border-top: 1px solid rgba(17, 17, 17, .14);
    padding-top: 20px;
}

.agency-step span {
    color: var(--ist-primary);
    font-weight: 900;
}

.agency-step p {
    color: #111;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
}

.agency-steps--dark .agency-step {
    border-color: rgba(255, 255, 255, .16);
}

.pricing-panel,
.agency-cta__inner {
    display: flex;
    justify-content: space-between;
    gap: 34px;
    align-items: center;
    border-radius: 26px;
    padding: 44px;
    background: #fff;
}

.agency-cta {
    padding: 90px 0;
    background: #101010;
}

.agency-cta__inner {
    background: #f35a2d;
}

.agency-cta__inner h2,
.agency-cta__inner .agency-kicker,
.agency-cta__inner .agency-link {
    color: #fff;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 980px;
}

.faq-list details {
    border: 1px solid #e2e6ec;
    border-radius: 14px;
    padding: 20px 22px;
    background: #fff;
}

.faq-list summary {
    color: #111;
    cursor: pointer;
    font-size: 20px;
    font-weight: 900;
}

.faq-list p {
    color: #647084;
    line-height: 1.7;
    margin: 16px 0 0;
}

.shop-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 18px;
    margin-bottom: 24px;
}

.shop-search,
.shop-sort,
.filter-group label {
    display: grid;
    gap: 8px;
    color: #111;
    font-weight: 800;
}

.shop-search input,
.shop-sort select {
    width: 100%;
    border: 1px solid #dfe4ea;
    border-radius: 14px;
    padding: 15px 16px;
    background: #fff;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.shop-sidebar,
.mobile-filter {
    border: 1px solid #e2e6ec;
    border-radius: 18px;
    padding: 24px;
    background: #fff;
}

.mobile-filter {
    display: none;
    margin-bottom: 24px;
}

.mobile-filter summary {
    cursor: pointer;
    font-weight: 900;
}

.filter-group {
    display: grid;
    gap: 12px;
}

.filter-group + .filter-group {
    border-top: 1px solid #edf0f4;
    margin-top: 22px;
    padding-top: 22px;
}

.filter-group h3 {
    color: #111;
    font-size: 18px;
}

.filter-group label {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #596579;
    font-weight: 700;
}

.package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-card__top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
}

.package-card__top span {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 8px 12px;
    color: #fff;
    background: var(--ist-primary);
    font-size: 13px;
    font-weight: 900;
}

.package-card ul,
.footer-links {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.package-card li {
    color: #596579;
    line-height: 1.55;
}

.package-card li::before {
    content: "+ ";
    color: var(--ist-primary);
    font-weight: 900;
}

.package-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: auto;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 54px;
}

.contact-panel {
    background: #101010;
}

.contact-panel h2,
.contact-panel p,
.contact-panel a {
    color: #fff;
}

.contact-form-card {
    box-shadow: 0 28px 80px rgba(16, 24, 40, .08);
}

.ist-footer .title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-links li,
.footer-links a,
.ist-footer .info-text a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
}

.footer-links a:hover,
.ist-footer .info-text a:hover {
    color: #fff;
}

.theme-card-area .blog .title,
.theme-shop-area .blog .title {
    height: auto;
    min-height: 84px;
}

.theme-hero-eyebrow-rest {
    display: block;
    margin-top: 3px;
}

.theme-card-text {
    color: var(--secondary);
    font-size: 16px;
    line-height: 1.55;
    margin-top: 16px;
}

.theme-card-grid .blog .thumb img {
    min-height: 100%;
}

.client-area .client-box .thumb img {
    max-width: 74px;
    max-height: 54px;
    object-fit: contain;
}

.theme-shop {
    margin-top: 63px;
}

.theme-shop .shop-toolbar {
    margin-bottom: 30px;
}

.theme-shop .shop-search input,
.theme-shop .shop-sort select,
.theme-form input,
.theme-form select,
.theme-form textarea {
    border-color: var(--border);
    border-radius: 20px;
    font-size: 16px;
    min-height: 58px;
}

.theme-shop .shop-sidebar,
.theme-shop .mobile-filter,
.theme-shop .package-card,
.theme-form,
.theme-contact-details,
.theme-pagination {
    border-color: var(--border);
    border-radius: 20px;
}

.theme-shop .package-card {
    padding: 34px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.theme-shop .package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(18, 18, 18, .08);
}

.theme-shop .package-card__top .tag {
    background: rgba(232, 92, 48, .1);
    color: var(--theme);
}

.theme-shop .package-card__top strong {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--white);
    background: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.theme-shop .package-card h2 {
    font-size: 30px;
    line-height: 1;
}

.theme-shop .package-card p,
.theme-shop .package-card li,
.theme-contact-details p {
    color: var(--secondary);
}

.theme-shop .package-card li::before {
    color: var(--theme);
}

.theme-shop .package-card__actions .wc-btn-primary {
    padding: 20px 28px;
}

.theme-contact-grid {
    align-items: flex-start;
}

.theme-contact-details {
    border: 1px solid var(--border);
    padding: 28px;
    margin-top: 35px;
}

.theme-contact-details a {
    color: var(--theme);
}

.theme-form {
    border: 1px solid var(--border);
    background: var(--white);
    padding: 34px;
}

.theme-form textarea {
    min-height: 160px;
}

.theme-form .wc-btn-primary {
    width: max-content;
    border: 0;
}

.theme-pagination {
    margin-top: 45px;
}

.theme-price-area {
    margin-bottom: 120px;
}

@media (max-width: 1199px) {
    .agency-card-grid,
    .agency-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .admin-detail-grid,
    .shop-filter-panel {
        grid-template-columns: 1fr;
    }

    .shop-heading,
    .product-card__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .agency-hero__grid,
    .agency-split,
    .theme-contact-grid,
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        display: none;
    }

    .mobile-filter {
        display: block;
    }

    .agency-hero {
        padding-top: 125px;
    }

    .theme-shop {
        margin-top: 43px;
    }
}

@media (max-width: 767px) {
    .shop-filter-actions,
    .product-card__meta {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-filter-actions .ist-btn,
    .shop-filter-actions .ist-btn-outline,
    .product-card__bottom .ist-btn {
        width: 100%;
    }

    .whatsapp-widget {
        left: 16px;
        bottom: 16px;
    }

    .whatsapp-widget__toggle {
        width: 54px;
        height: 54px;
    }

    .whatsapp-widget__panel {
        bottom: 66px;
        width: min(292px, calc(100vw - 32px));
    }

    .agency-hero {
        padding: 112px 0 64px;
    }

    .agency-hero h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .agency-hero:not(.home-hero) h1 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .agency-hero__media,
    .agency-hero__media img {
        min-height: 280px;
    }

    .agency-section {
        padding: 74px 0;
    }

    .agency-card-grid,
    .agency-feature-grid,
    .package-grid,
    .shop-toolbar {
        grid-template-columns: 1fr;
    }

    .pricing-panel,
    .agency-cta__inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px;
    }

    .agency-step {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .agency-step p {
        font-size: 18px;
    }

    .theme-shop .package-card,
    .theme-form,
    .theme-contact-details {
        padding: 24px;
    }

    .theme-shop .package-card h2 {
        font-size: 26px;
    }

    .theme-shop .package-card__actions {
        align-items: flex-start;
        flex-direction: column;
    }
}
