/* Basic comic + premium style */
* {
    box-sizing: border-box;
}

body.dd-body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff7dd;
    color: #222;
}

a { text-decoration: none; color: inherit; }

.dd-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 3px solid #000;
}

.dd-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dd-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dd-logo-badge {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 3px solid #000;
    background: #ffe14f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    transform: rotate(-6deg);
}

.dd-logo-title {
    font-size: 20px;
    font-weight: 800;
}

.dd-logo-tagline {
    font-size: 11px;
    margin-top: -4px;
}

.dd-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
}

.dd-nav a {
    padding: 4px 8px;
}

.dd-nav a:hover {
    color: #047857;
}

.dd-cart-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dd-pill {
    border-radius: 999px;
    border: 2px solid #000;
    padding: 4px 10px;
    font-size: 11px;
    background: #fee2a2;
}

.dd-pill-cta {
    background: #10b981;
    color: #fff;
}

.dd-small-link {
    font-size: 11px;
}

.dd-main {
    min-height: 70vh;
}

/* Sections */
.dd-section {
    padding: 24px 16px;
}

.dd-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero */
.dd-hero {
    background: linear-gradient(to bottom, #fff5b5, #fff7dd);
    border-bottom: 4px solid #000;
}

.dd-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
    align-items: center;
}

.dd-hero-badge-big {
    width: 260px;
    height: 260px;
    border-radius: 999px;
    border: 6px solid #000;
    background: #fff;
    box-shadow: 8px 8px 0 #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.dd-hero-image {
    width: 80%;
    height: auto;
}

.dd-comic-bubble {
    position: absolute;
    right: -10px;
    top: -10px;
    background: #fde047;
    border-radius: 999px;
    border: 4px solid #000;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 800;
    transform: rotate(5deg);
    box-shadow: 4px 4px 0 #000;
}

.dd-comic-tag {
    position: absolute;
    left: -12px;
    bottom: -14px;
    background: #6ee7b7;
    border-radius: 999px;
    border: 4px solid #000;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(-4deg);
    box-shadow: 4px 4px 0 #000;
}

.dd-hero-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
}

.dd-hero-title span {
    color: #047857;
}

.dd-hero-text {
    font-size: 14px;
    margin-bottom: 8px;
}

.dd-hero-list {
    font-size: 12px;
    padding-left: 16px;
    margin-bottom: 10px;
}

.dd-hero-list li {
    margin-bottom: 4px;
}

.dd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.dd-btn-primary {
    background: #047857;
    color: #fff;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    border: 3px solid #000;
    box-shadow: 5px 5px 0 #000;
}

.dd-btn-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 #000;
}

.dd-tag-pill {
    font-size: 11px;
    background: #fff;
    border-radius: 999px;
    border: 2px dashed #10b981;
    padding: 6px 10px;
}

/* Products grid */
.dd-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.dd-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

.dd-product-card {
    position: relative;
    background: #fff7e3;
    border-radius: 24px;
    border: 3px solid #000;
    padding: 12px;
    box-shadow: 6px 6px 0 #000;
}

.dd-product-badge {
    position: absolute;
    top: -10px;
    right: -6px;
    background: #fb7185;
    border-radius: 999px;
    border: 4px solid #000;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    transform: rotate(4deg);
}

.dd-product-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
}

.dd-product-img {
    max-width: 120px;
    max-height: 120px;
}

.dd-product-title {
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    margin: 6px 0 2px;
}

.dd-product-desc {
    font-size: 11px;
    text-align: center;
    margin-bottom: 4px;
}

.dd-product-price {
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 6px;
}

.dd-product-footer {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: space-between;
}

.dd-input-qty {
    width: 55px;
    padding: 4px;
    border-radius: 999px;
    border: 2px solid #000;
    text-align: center;
    font-size: 11px;
}

.dd-btn-cart {
    flex: 1;
    border-radius: 999px;
    border: 2px solid #000;
    padding: 6px 10px;
    font-size: 11px;
    background: #000;
    color: #fff;
}

/* Info section */
.dd-info-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
    align-items: center;
    margin-top: 20px;
}

.dd-info-card {
    background: #ecfdf5;
    border-radius: 24px;
    border: 3px solid #000;
    padding: 16px;
}

.dd-bullet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.dd-bullet {
    background: #fff;
    border-radius: 16px;
    border: 2px solid #000;
    padding: 8px 10px;
    font-size: 11px;
}

.dd-quote-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    border: 4px solid #000;
    padding: 14px;
    box-shadow: 5px 5px 0 #000;
    font-size: 12px;
}

.dd-quote-tag {
    position: absolute;
    top: -12px;
    left: -10px;
    background: #facc15;
    border-radius: 999px;
    border: 4px solid #000;
    padding: 6px 10px;
    font-size: 10px;
    transform: rotate(-6deg);
}

/* Generic content pages */
.dd-page-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.dd-page {
    font-size: 13px;
}

/* Forms */
.dd-form-card {
    background: #fff;
    border-radius: 24px;
    border: 3px solid #000;
    padding: 16px;
    box-shadow: 6px 6px 0 #000;
}

.dd-form-group {
    margin-bottom: 10px;
}

.dd-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 4px;
}

.dd-input, .dd-textarea, .dd-select {
    width: 100%;
    border-radius: 16px;
    border: 2px solid #000;
    padding: 7px 10px;
    font-size: 12px;
}

.dd-textarea {
    min-height: 80px;
    resize: vertical;
}

.dd-btn {
    border-radius: 999px;
    border: 2px solid #000;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    background: #000;
    color: #fff;
}

.dd-btn-secondary {
    background: #e5e7eb;
    color: #000;
}

/* Alerts */
.dd-alert {
    border-radius: 16px;
    padding: 8px 10px;
    font-size: 11px;
    margin-bottom: 10px;
}

.dd-alert-error {
    background: #fee2e2;
    border: 2px solid #ef4444;
}

.dd-alert-success {
    background: #dcfce7;
    border: 2px solid #22c55e;
}

/* Tables */
.dd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.dd-table th, .dd-table td {
    border: 1px solid #000;
    padding: 6px 8px;
}

/* Footer */
.dd-footer {
    background: #111827;
    color: #e5e7eb;
    margin-top: 40px;
    border-top: 4px solid #000;
}

.dd-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px;
    font-size: 12px;
}

.dd-footer-inner h4 {
    margin-bottom: 6px;
}

.dd-footer-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dd-footer-inner li {
    margin-bottom: 3px;
}

.dd-footer-inner a {
    color: #e5e7eb;
}

.dd-footer-inner a:hover {
    text-decoration: underline;
}

.dd-footer-bottom {
    text-align: center;
    font-size: 11px;
    padding: 8px;
    border-top: 1px solid #374151;
}

.dd-small {
    font-size: 11px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .dd-hero-grid {
        grid-template-columns: 1fr;
    }
    .dd-info-grid {
        grid-template-columns: 1fr;
    }
    .dd-hide-mobile {
        display: none;
    }
}
