/* 1. Reset & Base */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111118;
    --bg-tertiary: #1a1a2e;
    --text-primary: #e8e8e8;
    --text-secondary: #a0a0b0;
    --accent: #FFD700;
    --accent-hover: #FFC000;
    --accent-dim: rgba(255, 215, 0, 0.1);
    --border: #2a2a3a;
    --success: #4caf50;
    --warning: #ff9800;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
}

/* 2. Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 3. Header/Nav */
.site-header {
    position: sticky;
    top: 0;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

/* Promo Banner */
.promo-banner {
    display: block;
    line-height: 0;
    transition: opacity 0.2s;
}

.promo-banner:hover {
    opacity: 0.85;
}

.promo-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.sidebar-banner {
    margin-top: 1.25rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent);
}

.main-nav {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: var(--text-primary);
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* 4. Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: url('../images/hero-bg.jpg') center center / cover no-repeat;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.4);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 5. Addon Grid */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
}

/* 6. Addon Card */
.addon-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.addon-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.addon-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.15);
}

.addon-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
}

.addon-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.addon-title {
    font-size: 1.25rem;
    margin: 0 0 10px 0;
}

.addon-title a {
    color: var(--text-primary);
}

.addon-title a:hover {
    color: var(--accent);
}

.addon-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.addon-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.addon-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
}

.addon-price-free {
    color: var(--success);
}

.price-free {
    color: var(--success) !important;
}

.addon-version {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Addon Card Components (used in grid) */
.addon-card-image {
    position: relative;
    overflow: hidden;
}

.addon-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border);
}

.addon-card-body {
    padding: 10px;
    padding-top: 0;
}

.addon-card-title {
    font-size: 1.1rem;
    margin: 10px 0 6px;
    color: var(--text-primary);
}

.addon-card-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0 0 12px;
    line-height: 1.5;
}

.addon-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.addon-detail-layout {
    display: flex;
    gap: 40px;
    padding: 40px 0;
}

.addon-main-content {
    flex: 0 0 70%;
    max-width: 70%;
}

.addon-sidebar {
    flex: 0 0 calc(30% - 40px);
    max-width: calc(30% - 40px);
}

/* 8. Buy Box / Sidebar */
.buy-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: sticky;
    top: 90px;
    box-shadow: var(--shadow);
}

.buy-box-image {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.buy-box-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.buy-box-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    padding: 1.25rem 1.5rem 0.25rem;
}

.buy-box .btn {
    margin: 0.5rem 1.5rem 0;
    width: calc(100% - 3rem);
}

.buy-box .btn-outline {
    margin-bottom: 0.25rem;
}

.buy-box-info {
    padding: 1rem 1.5rem 1.25rem;
    margin-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.88rem;
}

.info-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.info-row span:first-child {
    color: var(--text-secondary);
}

.info-row span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

.info-row .badge {
    position: static;
    font-size: 0.7rem;
}

/* 9. Markdown Content Styling */
.markdown-body {
    color: var(--text-primary);
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.markdown-body h1, .markdown-body h2, .markdown-body h3, .markdown-body h4, .markdown-body h5, .markdown-body h6 {
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.25;
}

.markdown-body h1 { font-size: 2em; border-bottom: 1px solid var(--border); padding-bottom: .3em; }
.markdown-body h2 { font-size: 1.5em; border-bottom: 1px solid var(--border); padding-bottom: .3em; }
.markdown-body h3 { font-size: 1.25em; }

.markdown-body p, .markdown-body blockquote, .markdown-body ul, .markdown-body ol, .markdown-body dl, .markdown-body table, .markdown-body pre, .markdown-body details {
    margin-top: 0;
    margin-bottom: 16px;
}

.markdown-body code {
    background-color: var(--bg-tertiary);
    border-radius: 6px;
    padding: .2em .4em;
    font-size: 85%;
}

.markdown-body pre {
    background-color: var(--bg-tertiary);
    border-radius: 6px;
    padding: 16px;
    overflow: auto;
}

.markdown-body pre code {
    background-color: transparent;
    padding: 0;
}

.markdown-body blockquote {
    padding: 0 1em;
    color: var(--text-secondary);
    border-left: .25em solid var(--accent);
}

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

.markdown-body table th, .markdown-body table td {
    padding: 6px 13px;
    border: 1px solid var(--border);
}

.markdown-body table tr {
    background-color: var(--bg-secondary);
}

.markdown-body table tr:nth-child(2n) {
    background-color: var(--bg-primary);
}

.markdown-body img {
    max-width: 100%;
    box-sizing: content-box;
    border-radius: 6px;
}

/* 10. Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover), #fff);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent-dim);
    color: var(--accent-hover);
}

/* 11. Badges */
.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}

.badge-featured {
    background-color: var(--accent);
    color: #000;
}

.badge-available {
    background-color: var(--success);
    color: #fff;
}

.badge-coming-soon {
    background-color: var(--warning);
    color: #fff;
}

/* 12. Footer */
.site-footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 20px 0;
    margin-top: 60px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    max-width: 300px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links h4, .footer-contact h4 {
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    color: var(--text-secondary);
    margin: 5px 0;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* 13. Utilities */
.text-center { text-align: center; }
.text-gold { color: var(--accent); }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* 15. Contact Form */
.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 800px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.contact-form .required {
    color: #f44336;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a0b0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.contact-form small {
    display: block;
    margin-top: 0.3rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    opacity: 0.7;
}

.contact-submit {
    width: auto;
    padding: 0.85rem 2.5rem;
}

.contact-success {
    background: var(--bg-secondary);
    border: 1px solid var(--success);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 500px;
}

.contact-success .success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--success);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-success h3 {
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.contact-success p {
    color: var(--text-secondary);
    margin: 0 0 1.5rem;
}

.contact-success .btn {
    width: auto;
    display: inline-block;
}

.contact-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    max-width: 800px;
}

/* 16. Comments Section */
.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.comments-title {
    font-size: 1.3rem;
    margin: 0 0 1.5rem;
    color: var(--text-primary);
}

.comments-empty {
    color: var(--text-secondary);
    font-style: italic;
    padding: 1.5rem 0;
}

.comment {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.comment-admin {
    border-left: 3px solid var(--accent);
    background: rgba(255, 215, 0, 0.02);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.comment-admin .comment-avatar {
    background: var(--accent);
    color: #000;
}

.comment-admin-badge {
    background: var(--accent);
    color: #000;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.comment-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.comment-body {
    color: var(--text-primary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Comment Form */
.comment-form-wrap {
    margin-top: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.comment-form-wrap h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.comment-form-group {
    margin-bottom: 1rem;
}

.comment-form-group label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.comment-form-group .required {
    color: #f44336;
}

.comment-form-group input,
.comment-form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.comment-form-group input:focus,
.comment-form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.comment-form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.comment-form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.78rem;
    opacity: 0.7;
}

.comment-admin-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0 0 1rem;
    padding: 0.5rem 0.75rem;
    background: var(--accent-dim);
    border-radius: 6px;
    display: inline-block;
}

.comment-submit-btn {
    width: auto;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
}

.comment-alert {
    padding: 0.7rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.comment-alert-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: var(--success);
}

.comment-alert-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

/* 17. Blog */
.hero-sm {
    padding: 50px 0;
}

.blog-section {
    padding: 2rem 0 3rem;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-card {
    display: flex;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
    color: inherit;
}

.blog-card-image {
    flex: 0 0 280px;
    max-width: 280px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 200px;
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.blog-card-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.blog-tag {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.blog-card-title {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    color: var(--text-primary);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.blog-read-more {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

/* Blog Post Detail */
.blog-post-layout {
    max-width: 800px;
    padding: 2rem 0 3rem;
}

.blog-post-header {
    margin-bottom: 2rem;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.blog-post-title {
    font-size: 2rem;
    margin: 0;
    line-height: 1.3;
}

.blog-post-image {
    margin-bottom: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
}

/* 18. Blog Sidebar Widgets */
.sidebar-widget {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.sidebar-widget-title {
    font-size: 1rem;
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
}

.sidebar-addon-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.sidebar-addon-item:last-child {
    border-bottom: none;
}

.sidebar-addon-item:hover {
    opacity: 0.8;
}

.sidebar-addon-item img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-addon-item div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.sidebar-addon-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-addon-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
}

.sidebar-post-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.6rem 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: opacity 0.2s;
}

.sidebar-post-item:last-child {
    border-bottom: none;
}

.sidebar-post-item:hover {
    opacity: 0.8;
}

.sidebar-post-title {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

.sidebar-post-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* 14. Responsive */
@media (max-width: 992px) {
    .addon-detail-layout {
        flex-direction: column;
    }
    .addon-main-content, .addon-sidebar {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .buy-box {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .addon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-inner {
        flex-wrap: wrap;
    }
    
    .footer-brand {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-secondary);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--border);
        clip-path: circle(0px at top right);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .main-nav.active {
        clip-path: circle(150% at top right);
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .comment-form-row {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-card-image {
        flex: none;
        max-width: 100%;
    }
    
    .blog-card-image img {
        height: 200px;
    }
    
    .blog-post-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .addon-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}
