/**
 * HNG Plugins - Frontend Styles
 * 
 * @package HNG_Theme
 */

/* =========================================
   Plugins Archive Page
   ========================================= */

.plugins-archive {
    min-height: 100vh;
    padding-top: 80px;
}

/* Hero Section */
.plugins-hero {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.plugins-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.plugins-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    color: #00ff88;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.plugins-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.plugins-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
}

/* Filter Bar */
.plugins-filter {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.filter-btn.active {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-color: #00ff88;
    color: #050505;
}

/* Plugins List */
.plugins-list {
    padding: 60px 0;
}

.plugins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.plugins-empty {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.plugins-empty h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.plugins-empty p {
    color: rgba(255, 255, 255, 0.6);
}

/* Pagination */
.plugins-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.plugins-pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.plugins-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.plugins-pagination .page-numbers:hover,
.plugins-pagination .page-numbers.current {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.plugins-pagination .page-numbers svg {
    fill: currentColor;
}

/* CTA Section */
.plugins-cta {
    padding: 60px 0 100px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.cta-content h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   Plugin Single Page
   ========================================= */

.plugin-single {
    min-height: 100vh;
    padding-top: 80px;
}

/* Plugin Hero */
.plugin-hero {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.03) 0%, transparent 100%);
}

.plugin-hero-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.plugin-hero-icon {
    flex-shrink: 0;
}

.plugin-hero-icon .plugin-icon,
.plugin-hero-icon img {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.plugin-icon-placeholder {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
    border-radius: 24px;
    color: #00ff88;
}

.plugin-icon-placeholder svg {
    width: 60px;
    height: 60px;
}

.plugin-hero-info {
    flex: 1;
}

.plugin-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.plugin-status {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-stable {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
}

.status-beta {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.status-alpha {
    background: rgba(255, 152, 0, 0.15);
    color: #ff9800;
}

.status-dev {
    background: rgba(33, 150, 243, 0.15);
    color: #2196f3;
}

.plugin-version {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.plugin-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.plugin-excerpt {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.plugin-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .plugin-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .plugin-badges,
    .plugin-actions {
        justify-content: center;
    }
}

/* Plugin Details Grid */
.plugin-details {
    padding: 60px 0;
}

.plugin-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
}

@media (max-width: 1024px) {
    .plugin-grid {
        grid-template-columns: 1fr;
    }
}

/* Plugin Content */
.plugin-section {
    margin-bottom: 50px;
}

.plugin-section h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plugin-content-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1rem;
}

/* Headings */
.plugin-content-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 50px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
    position: relative;
}

.plugin-content-text h2:first-child {
    margin-top: 0;
}

.plugin-content-text h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, transparent);
}

.plugin-content-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 35px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plugin-content-text h3:first-child {
    margin-top: 0;
}

/* Paragraphs */
.plugin-content-text p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.plugin-content-text p strong {
    color: #ffffff;
    font-weight: 600;
}

/* Lead paragraph - first p after h2 */
.plugin-content-text h2 + p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
}

/* Lists */
.plugin-content-text ul,
.plugin-content-text ol {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.plugin-content-text ul li,
.plugin-content-text ol li {
    position: relative;
    padding: 12px 15px 12px 45px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.plugin-content-text ul li:hover,
.plugin-content-text ol li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateX(5px);
}

.plugin-content-text ul li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 12px;
    color: #00ff88;
    font-weight: bold;
    font-size: 14px;
}

.plugin-content-text ol {
    counter-reset: item;
}

.plugin-content-text ol li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 12px;
    top: 10px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #050505;
    font-weight: 700;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plugin-content-text li strong {
    color: #ffffff;
    font-weight: 600;
}

.plugin-content-text li em {
    color: rgba(255, 255, 255, 0.6);
}

/* Nested lists */
.plugin-content-text ul ul,
.plugin-content-text ol ol,
.plugin-content-text ul ol,
.plugin-content-text ol ul {
    margin: 10px 0 0 0;
}

.plugin-content-text ul ul li,
.plugin-content-text ol ol li {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

/* Code */
.plugin-content-text code {
    background: rgba(0, 255, 136, 0.1);
    padding: 3px 10px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.875em;
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.plugin-content-text pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 25px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plugin-content-text pre code {
    background: none;
    padding: 0;
    border: none;
    color: rgba(255, 255, 255, 0.9);
}

/* Links */
.plugin-content-text a {
    color: #00ff88;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.plugin-content-text a:hover {
    color: #ffffff;
    border-bottom-color: #00ff88;
}

/* Blockquotes */
.plugin-content-text blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 200, 255, 0.03));
    border-left: 4px solid #00ff88;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.plugin-content-text blockquote p:last-child {
    margin-bottom: 0;
}

/* Tables */
.plugin-content-text table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.plugin-content-text th,
.plugin-content-text td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plugin-content-text th {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
}

.plugin-content-text tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* Pricing/Fees Table Specific Styles */
.plugin-content-text .fees-table {
    margin: 30px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.plugin-content-text .fees-table th {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 200, 106, 0.15));
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    padding: 18px 12px;
    font-size: 0.9em;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.plugin-content-text .fees-table th:first-child {
    text-align: left;
    padding-left: 20px;
}

.plugin-content-text .fees-table th:last-child {
    border-right: none;
}

.plugin-content-text .fees-table td {
    text-align: center;
    padding: 16px 12px;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.plugin-content-text .fees-table td:first-child {
    text-align: left;
    padding-left: 20px;
    font-weight: 700;
    color: #ffffff;
}

.plugin-content-text .fees-table td:last-child {
    border-right: none;
}

.plugin-content-text .fees-table tbody tr {
    transition: all 0.3s ease;
}

.plugin-content-text .fees-table tbody tr:hover {
    background: rgba(0, 255, 136, 0.08) !important;
    transform: scale(1.01);
}

.plugin-content-text .fees-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}

.plugin-content-text .fees-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.2);
}

/* Tier colors */
.plugin-content-text .fees-table .tier-1 td:first-child {
    color: #4ade80;
}

.plugin-content-text .fees-table .tier-2 td:first-child {
    color: #60a5fa;
}

.plugin-content-text .fees-table .tier-3 td:first-child {
    color: #f59e0b;
}

/* Info box for fees explanation */
.plugin-content-text .fees-info {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 200, 255, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 20px 25px;
    margin: 25px 0;
}

.plugin-content-text .fees-info p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.plugin-content-text .fees-info p:last-child {
    margin-bottom: 0;
}

.plugin-content-text .fees-info strong {
    color: #00ff88;
}

/* Horizontal Rule */
.plugin-content-text hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 40px 0;
}

/* Images */
.plugin-content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Feature Cards - for content with emojis as headers */
.plugin-content-text h3:has(+ ul),
.plugin-content-text h3:has(+ p + ul) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
}

/* Special styling for h3 with emojis */
.plugin-content-text h3 {
    font-size: 1.25rem;
}

/* Emphasis boxes */
.plugin-content-text p:has(strong:first-child) {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 3px solid rgba(0, 255, 136, 0.5);
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.features-list li svg {
    flex-shrink: 0;
    color: #00ff88;
    margin-top: 2px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sidebar */
.plugin-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
}

.sidebar-card h3 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 14px;
}

/* Meta List */
.plugin-meta-list {
    margin: 0;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-item dt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.meta-item dd {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

/* Developer Info */
.developer-info {
    text-align: center;
}

.developer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.developer-info p {
    margin: 5px 0;
}

/* Related Plugins */
.plugin-related {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.plugin-related h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 30px;
}

/* =========================================
   Plugin Card Component
   ========================================= */

.plugin-card {
    height: 100%;
}

.plugin-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.plugin-card-inner:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.plugin-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.plugin-card-icon .plugin-thumb {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
}

.plugin-card-icon .plugin-icon-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 14px;
}

.plugin-card-icon .plugin-icon-placeholder svg {
    width: 32px;
    height: 32px;
}

.plugin-card-badges {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.plugin-card-body {
    flex: 1;
}

.plugin-card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.plugin-card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.plugin-card-title a:hover {
    color: #00ff88;
}

.plugin-card-excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.plugin-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.plugin-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.plugin-card-features li svg {
    color: #00ff88;
    flex-shrink: 0;
}

.plugin-card-features .more-features {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.plugin-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 15px;
}

.plugin-card-meta {
    display: flex;
    gap: 15px;
}

.plugin-card-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    padding: 0;
    border: none;
}

.plugin-card-meta .meta-item svg {
    opacity: 0.5;
}

.plugin-card-actions {
    display: flex;
    gap: 8px;
}

/* =========================================
   Section Plugins (Homepage)
   ========================================= */

.section-plugins {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    color: #00ff88;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.gradient-orb-1 {
    top: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(0, 255, 136, 0.2);
}

.gradient-orb-2 {
    bottom: 10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(0, 200, 255, 0.15);
}

/* =========================================
   Buttons
   ========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #050505;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00cc6a, #00ff88);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-download {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #050505;
}

/* =========================================
   Animations
   ========================================= */

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.fade-in-up:nth-child(5) { animation-delay: 0.5s; }
.fade-in-up:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Container
   ========================================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 640px) {
    .plugins-grid {
        grid-template-columns: 1fr;
    }
    
    .plugin-card-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .plugin-card-meta {
        justify-content: center;
    }
    
    .plugin-card-actions {
        justify-content: center;
    }
    
    .plugin-actions {
        flex-direction: column;
    }
    
    .plugin-actions .btn {
        width: 100%;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Single Product Page - Add to Cart
   ========================================= */

/* Main form - transparent */
.hng-add-to-cart-form {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
}

/* Quantity Selector - with subtle white background */
.hng-add-to-cart-form .flex.items-center.gap-2.border {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
}

.hng-add-to-cart-form .flex.items-center.gap-2.border:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.hng-add-to-cart-form .flex.items-center.gap-2:focus-within {
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.hng-qty-minus,
.hng-qty-plus {
    transition: all 0.2s ease;
}

.hng-qty-minus:hover,
.hng-qty-plus:hover {
    background: rgba(0, 255, 136, 0.1) !important;
    color: #00ff88 !important;
}

.hng-qty-input {
    transition: color 0.2s ease;
}

.hng-qty-input:focus {
    color: #00ff88 !important;
}

/* Buttons Container */
.hng-add-to-cart-form > div:first-child {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Add to Cart Button */
.hng-add-to-cart-form button[type="submit"] {
    background: linear-gradient(135deg, #00ff88 0%, #00bfff 100%);
    color: #0a0a0a;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.hng-add-to-cart-form button[type="submit"]:hover {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    transform: translateY(-3px);
}

.hng-add-to-cart-form button[type="submit"]:active {
    transform: translateY(-1px);
}

/* Go to Cart Link */
.hng-add-to-cart-form > a[href*="carrinho"],
.hng-add-to-cart-form > a[href*="cart"] {
    display: block;
    padding: 0.75rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hng-add-to-cart-form > a[href*="carrinho"]:hover,
.hng-add-to-cart-form > a[href*="cart"]:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.4);
    color: #00ff88 !important;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hng-add-to-cart-form > div:first-child {
        flex-direction: column;
    }
    
    .hng-add-to-cart-form > div:first-child button,
    .hng-add-to-cart-form > a {
        width: 100%;
    }
}
