.logs-main { padding-top: 150px; }
.logs-header { text-align: center; margin-bottom: 100px; }

.logs-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 150px;
    padding-bottom: 150px;
}

.log-entry { display: flex; flex-direction: column; gap: 20px; }

.log-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 10px;
    color: #999;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.log-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.log-content.reversed {
    direction: ltr; /* Keeps text readable */
}

.log-image {
    background: #f9f9f9;
    padding: 10px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.log-image img {
    width: 100%;
    height: auto;
    filter: grayscale(1);
    transition: 0.8s var(--ease);
}

.log-entry:hover .log-image img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.log-text h3 {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.log-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.log-quote {
    text-align: center;
    padding: 80px 0;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: -2px;
    opacity: 0.1;
}

/* --- AESTHETIC TERMINAL CART --- */
.cart-overlay { 
    position: fixed; 
    top: 0; 
    right: -100%; 
    width: 450px; 
    height: 100%; 
    background: rgba(255, 255, 255, 0.8); /* Frosted Glass */
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    z-index: 3000; 
    transition: 0.8s var(--ease); 
    border-left: 1px solid var(--black); 
    display: flex; 
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0,0,0,0.05);
}

.cart-overlay.active { right: 0; }

.cart-header { 
    background: var(--black); 
    color: white; 
    padding: 40px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.cart-title { 
    font-family: var(--font-mono); 
    font-size: 10px; 
    letter-spacing: 4px; 
    font-weight: 700;
}

#cart-items-wrapper { 
    flex-grow: 1; 
    overflow-y: auto; 
    padding: 40px; 
}

/* Custom Scrollbar for the Bag */
#cart-items-wrapper::-webkit-scrollbar { width: 2px; }
#cart-items-wrapper::-webkit-scrollbar-thumb { background: var(--black); }

.cart-item { 
    display: grid; 
    grid-template-columns: 80px 1fr auto; 
    gap: 20px; 
    margin-bottom: 30px; 
    padding-bottom: 20px; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
    align-items: center; 
}

.cart-item img { 
    width: 100%; 
    aspect-ratio: 1;
    object-fit: contain;
    background: #f9f9f9;
    border: 1px solid #eee;
}

.cart-item h4 { 
    font-size: 12px; 
    text-transform: uppercase; 
    margin-bottom: 5px; 
    letter-spacing: -0.5px;
}

.cart-footer-block { 
    padding: 40px; 
    border-top: 1px solid var(--black); 
    background: rgba(255, 255, 255, 0.5);
}

.cart-total-row { 
    display: flex; 
    justify-content: space-between; 
    font-family: var(--font-mono); 
    font-size: 14px; 
    margin-bottom: 25px; 
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    background: var(--black);
    color: white;
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 10px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.checkout-btn:hover { background: var(--accent); }

@media (max-width: 800px) {
    .log-content { grid-template-columns: 1fr; gap: 30px; }
}
