@media (max-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    .header-content {
        padding: 12px 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .product-card {
        height: auto;
        min-height: 180px;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-logo {
        cursor: pointer;
    }
    
    .main-nav a {
        font-size: 11px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 80px;
    }
    
    .header-content {
        padding: 12px 80px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}/*
Theme Name: WRKFLW Portfolio
Description: Professional portfolio theme with masonry grid layout
Version: 1.0
Author: Your Name
*/

/* ===== RESET & BASE ===== */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    color: #222;
    font-size: 14px;
    line-height: 1.4;
    background: #fafafa;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 120px;
}

/* ===== LOGO STYLING ===== */
.logo-text {
    font-weight: 900;
}

.separator {
    color: #d5a63a;
    font-weight: 100;
    padding: 0 1px;
    position: relative;
    top: -0.1em;
}

/* ===== ACCENT STYLING ===== */
.accent span {
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
}

.accent span::after {
    content: " / ";
    font-weight: 700;
    color: #d5a63a;
}

/* ===== HEADER ===== */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo {
    font-size: 20px;
    font-weight: 300;
    color: #222;
    text-decoration: none;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.header-logo.visible {
    opacity: 1;
    transform: scale(1);
}

.main-nav {
    display: flex;
    gap: 0;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav li:not(:last-child)::after {
    content: '×';
    color: #d5a63a;
    font-size: 14px;
    font-weight: 300;
    padding: 0 8px;
    margin: 0 8px;
}

.main-nav a {
    color: #666;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 8px 0;
    position: relative;
}

.main-nav a:hover {
    color: #d5a63a;
}

.main-nav a.active,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
    color: #d5a63a;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d5a63a;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after,
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after {
    width: 100%;
}

/* Gold Box Button Style */
.nav-gold-box,
.main-nav .menu-item-gold-box > a {
    background: #d5a63a;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    font-weight: 500;
    font-size: 11px;
    transition: background 0.2s ease;
}

.nav-gold-box:hover,
.main-nav .menu-item-gold-box > a:hover {
    background: #c19230;
}

.nav-gold-box::after,
.main-nav .menu-item-gold-box > a::after {
    display: none;
}

/* Remove separator after gold box items */
.main-nav .menu-item-gold-box::after {
    display: none;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding: 48px 0;
    min-height: calc(100vh - 200px);
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 220px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: #d5a63a;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #e8e8e8;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #d5a63a 0%, #c19230 100%);
    width: var(--progress, 0%);
    transition: width 0.8s ease;
}

.card-header {
    padding: 16px 16px 12px;
    flex-shrink: 0;
}

.card-preview {
    width: 100%;
    height: 40px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.preview-header {
    background: #ffffff;
    height: 12px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    padding: 0 6px;
}

.preview-dots {
    display: flex;
    gap: 2px;
}

.preview-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #ddd;
}

.preview-body {
    padding: 4px 6px;
    font-size: 7px;
    color: #999;
    line-height: 1.2;
}

.product-title-section {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.product-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #d5a63a 0%, #b8922a 50%, #d5a63a 100%);
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.2),
        inset 0 -1px 0 rgba(0,0,0,0.2),
        0 1px 3px rgba(0,0,0,0.1);
}

.icon-text {
    font-weight: 900;
    font-size: 14px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.3);
    letter-spacing: 0;
}

.product-title-text {
    flex: 1;
}

.product-title {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 10px;
    color: #666;
    font-style: italic;
    line-height: 1.2;
}

.card-body {
    padding: 0 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-description {
    font-size: 11px;
    color: #555;
    line-height: 1.4;
    flex: 1;
}

.card-footer {
    padding: 12px 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
    min-height: 40px;
}

.product-price {
    font-size: 14px;
    font-weight: 700;
    color: #d5a63a;
}

.price-coming-soon {
    font-size: 11px;
    font-weight: 500;
    color: #666;
}

.product-status {
    position: absolute;
    right: -20px;
    bottom: 10px;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 0;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: rotate(90deg);
    transform-origin: right center;
    z-index: 2;
}

.status-available {
    background: #e8f5e8;
    color: #2d5a2d;
    border: 1px solid #c3e6c3;
}

.status-coming-soon {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-development {
    background: #e7f3ff;
    color: #0066cc;
    border: 1px solid #b3d9ff;
}

.status-in-development {
    background: #e7f3ff;
    color: #0066cc;
    border: 1px solid #b3d9ff;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    z-index: 201;
    min-width: 280px;
    text-align: center;
}

.mobile-menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-items li {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-menu-items li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: block;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    padding: 16px 0;
    transition: color 0.2s ease;
}

.mobile-menu a:hover {
    color: #d5a63a;
}

.mobile-menu .nav-gold-box,
.mobile-menu .menu-item-gold-box > a {
    background: #d5a63a;
    color: white !important;
    padding: 12px 24px;
    border-radius: 4px;
    margin-top: 16px;
    border: none;
    display: inline-block;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #222;
    color: #999;
    padding: 32px 0 16px;
    margin-top: 48px;
}

.footer-content {
    text-align: center;
    margin-bottom: 16px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-menu {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: #999;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #d5a63a;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 16px;
    text-align: center;
    font-size: 11px;
    color: #666;
}

.footer-bottom a {
    color: #d5a63a;
    text-decoration: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    .header-content {
        padding: 12px 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .product-card {
        height: auto;
        min-height: 180px;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-logo {
        cursor: pointer;
    }
    
    .main-nav a {
        font-size: 11px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 80px;
    }
    
    .header-content {
        padding: 12px 80px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== DEV BLOG STYLES ===== */
.dev-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
    padding: 0;
}

/* Dev Sidebar */
.dev-layout .sidebar {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 113px;
    align-self: start;
}

.accordion-section {
    border-bottom: 1px solid #f5f5f5;
}

.accordion-section:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    user-select: none;
}

.accordion-header:hover {
    background: #fafafa;
}

.accordion-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #222;
}

.accordion-title .slash {
    color: #d5a63a;
    font-weight: 300;
    margin: 0 2px;
}

.accordion-icon {
    font-size: 18px;
    color: #d5a63a;
    transition: transform 0.3s ease;
}

.accordion-section.open .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-section.open .accordion-content {
    max-height: 500px;
}

.accordion-items {
    padding: 0 24px 16px;
}

.accordion-item {
    padding: 12px 16px;
    cursor: pointer;
    margin-left: 8px;
    transition: all 0.2s;
    font-size: 14px;
    color: #666;
    position: relative;
}

.accordion-item:hover {
    background: #fafafa;
}

.accordion-item.active {
    background: #ffffff;
    color: #222;
    font-weight: 500;
}

.accordion-item[data-project].active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(to right, #d5a63a var(--progress), #f5f5f5 var(--progress));
    border-radius: 1px;
}

/* Dev Content Panel */
.content-panel {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 48px;
    min-height: 600px;
}

.panel-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f5f5f5;
}

.panel-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0;
    line-height: 1;
}

.panel-subtitle {
    font-size: 14px;
    color: #d5a63a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 2px;
}

/* Dev Log Entries */
.log-entry {
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid #f5f5f5;
}

.log-entry:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.entry-header {
    margin-bottom: 24px;
}

.entry-date {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.entry-title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}

.entry-version {
    font-size: 12px;
    color: #d5a63a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.entry-content {
    color: #444;
    line-height: 1.8;
    font-size: 15px;
}

.entry-content p {
    margin-bottom: 16px;
}

.entry-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 24px 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.entry-content ul {
    list-style: none;
    margin: 16px 0;
}

.entry-content li {
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
    line-height: 1.8;
}

.entry-content li::before {
    content: '×';
    position: absolute;
    left: 0;
    top: 0;
    color: #d5a63a;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.4;
}

.entry-content code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 13px;
    color: #d5a63a;
    font-family: 'Monaco', monospace;
}

.entry-meta {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f5f5f5;
    flex-wrap: wrap;
}

.meta-tag {
    display: inline-block;
    background: #f8f9fa;
    color: #666;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #e9ecef;
}

.empty-state {
    text-align: center;
    padding: 80px 40px;
    color: #999;
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.empty-state-text {
    font-size: 16px;
    font-weight: 500;
}

/* Dev Blog Responsive */
@media (max-width: 1024px) {
    .dev-layout {
        grid-template-columns: 280px 1fr;
        gap: 24px;
        padding: 0;
    }

    .content-panel {
        padding: 32px;
    }

    .panel-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .dev-layout {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .dev-layout .sidebar {
        position: static;
    }

    .content-panel {
        padding: 24px;
    }

    .panel-title {
        font-size: 24px;
    }

    .entry-title {
        font-size: 20px;
    }
}