:root {
    --ds-primary: #16a34a;
    --ds-dark: #111827;
    --ds-light: #ffffff;
}
* { box-sizing: border-box; }
body.ds-demo-body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    color: #111827;
    background: #f8fafc;
}
.ds-top-bar {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: var(--ds-dark);
    color: var(--ds-light);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ds-top-inner {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
}
.ds-logo img {
    max-height: 46px;
    width: auto;
    display: block;
}
.ds-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.ds-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    background: var(--ds-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.ds-cta-btn:hover {
    opacity: .92;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.32);
}
.ds-site-wrap {
    max-width: 1200px;
    margin: 24px auto 110px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}
.ds-site-inner {
    width: 100%;
    min-height: 70vh;
    padding: 18px;
}
.ds-floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ds-action-btn {
    border: 0;
    text-decoration: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    box-shadow: 0 10px 20px rgba(2, 6, 23, 0.22);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.ds-action-wa { background: #22c55e; }
.ds-action-form { background: #2563eb; }
.ds-action-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
}
.ds-action-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}
.ds-action-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.ds-tabs-wrap { margin: 16px 0; }
.ds-tabs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.ds-tab {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    font-weight: 600;
}
.ds-tab-active {
    border-color: #16a34a;
    background: #16a34a;
    color: #fff;
}
.ds-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.ds-card-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
}
.ds-card-image-wrap {
    margin-bottom: 12px;
}
.ds-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    background: #f1f5f9;
}
.ds-card-image-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 600;
}
.ds-card-item h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.4;
}
.ds-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.ds-card-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 8px 12px;
    border-radius: 2px;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
	height:45px;
}
.ds-card-link-demo {
	background: #fff;
    color: #343434;
    border: 1px solid #343434;
    font-size: 12px;
}
.ds-card-link-offer {
    background: #16a34a;
    color: #fff;
	font-size: 13px;
    font-weight: 300;
}
.ds-card-link:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.2);
}
.ds-offer-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}
.ds-offer-modal.ds-offer-open { display: block; }
.ds-offer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.65);
    animation: dsFadeIn .22s ease;
}
.ds-offer-dialog {
    position: relative;
    max-width: 520px;
    margin: 6vh auto 0;
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.3);
    z-index: 2;
    animation: dsModalIn .28s cubic-bezier(.22,.61,.36,1);
    transform-origin: center top;
}
.ds-offer-close {
    position: absolute;
    right: 10px;
    top: 10px;
    border: 0;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
.ds-offer-subtitle { margin-top: -4px; color: #64748b; }
.ds-offer-form { display: grid; gap: 8px; }
.ds-offer-form label { font-weight: 600; font-size: 14px; }
.ds-offer-form input,
.ds-offer-form select {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 11px;
    font: inherit;
}
.ds-offer-kvkk {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 14px;
    color: #334155;
    margin-top: 6px;
}
.ds-offer-submit {
    margin-top: 6px;
    border: 0;
    background: #16a34a;
    color: #fff;
    border-radius: 8px;
    padding: 11px 14px;
    font-weight: 700;
    cursor: pointer;
}
.ds-offer-message {
    min-height: 20px;
    margin: 4px 0 0;
    font-weight: 600;
    color: #15803d;
}
@keyframes dsFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes dsModalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@media (max-width: 1024px) {
    .ds-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .ds-top-inner {
        min-height: 64px;
        padding: 10px 14px;
    }
    .ds-site-wrap {
        margin: 14px 10px 90px;
        border-radius: 8px;
    }
    .ds-floating-actions {
        right: 0;
        left: 0;
        bottom: 0;
        flex-direction: row;
        gap: 0;
    }
    .ds-action-btn {
        flex: 1;
        text-align: center;
        border-radius: 0;
        padding: 14px 10px;
    }
}
@media (max-width: 640px) {
    .ds-cards-grid { grid-template-columns: 1fr; }
    .ds-offer-dialog {
        margin: 0;
        min-height: 100vh;
        border-radius: 0;
    }
}
