:root {
--zc-black:#000;
--zc-white:#fff;
--zc-yellow:#ffd000;
--zc-accent: var(--zc-yellow);
--zc-bg:#0b0b0b;
--zc-text:#f5f5f5;
}
html, body {
margin: 0;
padding: 0;
background: var(--zc-bg);
color: var(--zc-text);
font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6, .site-title {
font-family: 'Oswald', sans-serif;
letter-spacing: .3px;
}
.container { width: min(1200px, 94%); margin: 0 auto; }
.grid { display: grid; gap: 1rem; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media(max-width:992px){ .grid.cols-4,.grid.cols-3{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){ .grid.cols-4,.grid.cols-3,.grid.cols-2{ grid-template-columns:1fr; } } .zc-header {
position: sticky; top: 0; z-index: 1000;
background: #111; border-bottom: 2px solid var(--zc-accent);
}
.zc-header-inner {
display: grid;
grid-template-columns: 160px 1fr 200px;
align-items: center;
padding: .5rem 0;
}
.zc-left { display:flex; align-items:center; gap:.5rem; }
.hamburger { width:28px; height:22px; cursor:pointer; display:inline-flex; flex-direction:column; justify-content:space-between; }
.hamburger span { display:block; height:3px; background:var(--zc-accent); }
.zc-logo a { color:var(--zc-accent); font-weight:800; text-decoration:none; }
.zc-center { text-align:center; }
.site-title { margin:.1rem 0 0; font-size:1.2rem; color:var(--zc-white); }
.site-slogan { margin:0; font-size:.85rem; color:#cfcfcf; }
.zc-right { display:flex; justify-content:flex-end; gap:.7rem; align-items:center; }
.zc-right a { color:var(--zc-accent); text-decoration:none; }
.zc-right a .fa-brands { font-size:1.05rem; } #zc-drawer {
position: fixed;
top: 0;
left: 0;
width: 260px;
max-width: 85vw;
height: 100%;
background: #0f0f0f;
border-right: 2px solid var(--zc-accent);
transform: translateX(-100%);
transition: transform 0.25s ease-in-out;
z-index: 2000;
padding: 1rem 1.5rem 2rem 1rem;
overflow-y: auto;
box-shadow: 4px 0 12px rgba(0,0,0,0.6);
}
#zc-drawer.open { transform: translateX(0); }
#zc-drawer #drawer-close {
background: none;
border: none;
color: var(--zc-accent);
font-size: 1.6rem;
position: absolute;
top: 10px;
right: 12px;
cursor: pointer;
}
#zc-drawer a {
display: block;
color: #fff;
text-decoration: none;
padding: 0.6rem 0;
font-size: 1rem;
border-bottom: 1px solid #1a1a1a;
}
#zc-drawer a:hover { color: var(--zc-accent); }
@media (min-width: 1200px) {
#zc-drawer { width: 240px; }
} .card {
background: #121212;
border: 1px solid #1f1f1f;
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
}
.card .media img { width: 100%; height: auto; display: block; }
.card .body { padding: .95rem; }
.card .title a { color: #fff; text-decoration: none; }
.card .meta { color: #aaa; font-size: .85rem; }
.card:hover {
transform: translateY(-4px);
box-shadow: 0 4px 14px rgba(255,204,0,0.3);
} .zc-home-tabs .tabs {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 1.5rem;
border-bottom: 2px solid #333;
}
.zc-home-tabs .tabs button {
background: #111;
color: #ccc;
border: none;
padding: 10px 18px;
margin: 4px;
font-family: 'Oswald', sans-serif;
font-size: 16px;
letter-spacing: 0.5px;
border-radius: 6px 6px 0 0;
cursor: pointer;
transition: all 0.3s ease;
}
.zc-home-tabs .tabs button:hover {
color: #ffcc00;
background: #222;
transform: translateY(-2px);
}
.zc-home-tabs .tabs button.active {
color: #000;
background: #ffcc00;
box-shadow: 0 0 12px rgba(255, 204, 0, 0.8);
border-bottom: 2px solid #ffcc00;
transform: translateY(-2px);
}
@media (max-width: 768px) {
.zc-home-tabs .tabs {
overflow-x: auto;
white-space: nowrap;
justify-content: flex-start;
}
.zc-home-tabs .tabs button {
flex: 0 0 auto;
}
} .zc-footer {
background: #0f0f0f;
border-top: 2px solid var(--zc-accent);
padding: 1.8rem 0 1.4rem;
color: #ddd;
}
.zc-footer .top {
display: grid;
grid-template-columns: 1fr 1.2fr 1fr;
align-items: flex-start;
gap: 1rem;
border-bottom: 1px solid #222;
padding-bottom: 1rem;
}
.zc-footer .left { display:flex; flex-direction:column; gap:.8rem; }
.zc-footer .live-search input {
width:100%; padding:.6rem .8rem;
border-radius:6px; border:1px solid #333;
background:#141414; color:#fff;
}
.zc-footer .newsletter form { display:flex; gap:.5rem; }
.zc-footer .newsletter input[type=email] {
flex:1; padding:.6rem .8rem;
border:1px solid #333; border-radius:4px;
background:#141414; color:#eee;
}
.zc-footer .newsletter button {
background:var(--zc-accent); border:0;
border-radius:4px; color:#000; font-weight:700;
cursor:pointer; padding:.6rem 1rem;
}
.zc-footer .center { text-align:center; }
.zc-footer .footer-menu {
display:flex; flex-wrap:wrap; justify-content:center;
gap:.7rem 1.2rem; list-style:none; padding:0; margin:0;
}
.zc-footer .footer-menu li a {
color:#ddd; text-decoration:none; font-size:.95rem;
}
.zc-footer .footer-menu li a:hover { color:var(--zc-accent); }
.zc-footer .right { text-align:right; }
.zc-footer .right a {
margin-left:.6rem; color:var(--zc-accent);
text-decoration:none; font-weight:600;
}
.zc-footer .right a .fa-brands { font-size:1.1rem; }
.zc-footer .bottom { text-align:center; margin-top:1rem; }
.zc-footer .copyright { color:#888; font-size:.85rem; margin:0; }
@media(max-width:900px){
.zc-footer .top { grid-template-columns:1fr; text-align:center; }
.zc-footer .right { text-align:center; margin-top:1rem; }
} #scroll-btn {
position: fixed;
right: 14px; bottom: 14px;
width: 44px; height: 44px;
border-radius: 50%;
background: var(--zc-accent);
color: #000; border: 0;
cursor: pointer; font-weight: 800;
z-index: 9999; display:flex; align-items:center; justify-content:center;
} .responsive-embed { position:relative; padding-bottom:56.25%; height:0; overflow:hidden; }
.responsive-embed iframe { position:absolute; top:0; left:0; width:100%; height:100%; } img.nodownload { -webkit-user-drag:none; user-drag:none; pointer-events:none; }
a, button { transition: all .2s ease; }
a:hover { color: var(--zc-accent); } #live-search-results {
background:#111;
border:1px solid #222;
margin-top:.3rem;
border-radius:6px;
}
#live-search-results a {
display:block;
padding:.4rem .6rem;
color:#ddd;
text-decoration:none;
}
#live-search-results a:hover {
background:#181818;
color:#fff;
}
.notice {
background:#092;
color:#fff;
padding:.6rem .8rem;
border-radius:6px;
} .contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="password"],
.contact-form input[type="search"],
.contact-form textarea {
transition: all 0.3s ease;
outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
border-color: #ffcc00 !important;
box-shadow: 0 0 10px #ffcc00;
} body, p, li, span {
color: #e0e0e0;
}
h1, h2, h3, h4, h5, h6 {
color: #ffcc00;
}
.card, .body, .grid, .container {
background-color: #0a0a0a;
}
a {
color: #ffcc00;
}
a:hover {
color: #ffe066;
} .zc-title-limit {
display: -webkit-box;
-webkit-line-clamp: 3; -webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
line-height: 1.3;
max-height: 4.2em; word-break: break-word;
} .zc-card .zc-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
aspect-ratio: 16 / 9;
display: block;
border-radius: 0;
} .zc-card h3 {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
min-height: 3.8em; line-height: 1.3em;
font-size: 18px;
font-weight: 600;
color: #FFD700;
font-family: 'Oswald', sans-serif;
}
.post-views {
color: #ccc;
font-size: 15px;
margin-top: 8px;
display: flex;
align-items: center;
gap: 6px;
font-weight: 500;
}
.post-views i {
color: #f00; font-size: 16px;
} .video-facade { position: relative; display: block; cursor: pointer; }
.video-facade img { display: block; width: 100%; height: auto; }
.video-facade .fa-play-circle,
.video-facade .fas.fa-play-circle,
.video-facade .play-icon {
position: absolute; 
top: 50%; 
left: 50%;
transform: translate(-50%, -50%);
font-size: 60px; 
color: rgba(255,255,255,.9);
pointer-events: none; }
.zc-live-search-container {
text-align: center;
margin: 30px auto;
max-width: 600px;
position: relative;
}
#zc-search-input {
width: 70%;
padding: 10px;
border: 2px solid #ff0000;
border-radius: 8px;
outline: none;
}
#zc-search-btn {
background-color: #000;
color: #fff;
padding: 10px 20px;
border-radius: 8px;
margin-left: 5px;
cursor: pointer;
transition: 0.3s;
}
#zc-search-btn:hover {
background-color: #ff0000;
}
#zc-search-results {
background: #fff;
text-align: left;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
margin-top: 10px;
padding: 10px;
position: absolute;
width: 100%;
z-index: 999;
}
#zc-search-results ul { list-style: none; padding: 0; margin: 0; }
#zc-search-results li { border-bottom: 1px solid #ddd; padding: 6px 0; }
#zc-search-results a { color: #000; text-decoration: none; }
#zc-search-results a:hover { color: #ff0000; } .zc-mini-logo-img {
width: 150px;
height: auto;
display: block;
object-fit: contain;
}
.zc-mini-logo a {
display: flex;
align-items: center;
justify-content: center;
}
.zc-header .zc-right.zc-mini-logo {
display: flex;
align-items: center;
} .page-id-974 .zc-ai-compare-box,
.page-id-974 #zc-ai-compare-result {
max-width: 95% !important;
width: 85% !important;
} .page-id-974 .container,
.page-id-974 .site-content,
.page-id-974 .entry-content {
max-width: 90% !important;
width: 90% !important;
padding-left: 20px;
padding-right: 20px;
} .zc-ai-compare-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-top: 30px;
width: 100%;
} .zc-ai-col {
background: #0d0d0d;
border: 1px solid #333;
padding: 20px;
border-radius: 8px;
} .zc-ai-summary {
margin-top: 30px;
padding: 20px;
background: #111;
border-left: 4px solid #f1c40f;
border-radius: 6px;
} .zc-ai-col h3 {
margin-bottom: 12px;
text-transform: uppercase;
color: #f1c40f;
} .page-id-974 #zc-ai-compare-result {
margin-bottom: 60px;
} .zc-account-bg {
background: radial-gradient(circle at top, #222 0, #000 45%, #111 100%);
padding: 40px 15px;
}
.zc-account-inner {
max-width: 1100px;
margin: 0 auto;
background: rgba(5,5,5,0.9);
border-radius: 18px;
padding: 30px 22px;
box-shadow: 0 20px 60px rgba(0,0,0,0.6);
color: #f7f7f7;
}
.zc-account-header {
display: flex;
justify-content: space-between;
gap: 20px;
align-items: center;
margin-bottom: 25px;
}
.zc-account-title {
font-size: 24px;
font-weight: 700;
margin: 0 0 6px;
color: #fff;
}
.zc-account-subtitle {
margin: 0;
font-size: 14px;
color: #ccc;
}
.zc-account-meta {
display: flex;
align-items: center;
gap: 10px;
}
.zc-account-badge {
background: #f5c400;
color: #000;
padding: 6px 12px;
border-radius: 999px;
font-size: 12px;
font-weight: 600;
}
.zc-account-logout {
color: #ff4d4d;
text-decoration: none;
font-size: 13px;
}
.zc-account-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 18px;
}
.zc-account-card {
display: block;
background: linear-gradient(135deg, #161616, #111);
border-radius: 14px;
padding: 18px 16px;
text-decoration: none;
color: #f7f7f7;
border: 1px solid rgba(255,255,255,0.06);
transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.zc-account-card:hover {
transform: translateY(-3px);
box-shadow: 0 12px 30px rgba(0,0,0,0.8);
border-color: #f5c400;
}
.zc-account-card h2 {
font-size: 16px;
margin: 8px 0 4px;
}
.zc-account-card p {
font-size: 13px;
margin: 0;
color: #c8c8c8;
}
.zc-card-icon {
font-size: 26px;
} .zc-account-auth-box {
text-align: center;
}
.zc-account-auth-box .zc-account-title {
margin-bottom: 8px;
}
.zc-account-auth-box .zc-account-subtitle {
margin-bottom: 20px;
} .zc-profile-wrapper {
max-width: 600px;
margin: 0 auto;
color: #f7f7f7;
}
.zc-profile-wrapper h1 {
font-size: 22px;
margin-bottom: 15px;
}
.zc-profile-field {
margin-bottom: 12px;
}
.zc-profile-field label {
display: block;
font-size: 13px;
margin-bottom: 4px;
color: #ddd;
}
.zc-profile-field input {
width: 100%;
border-radius: 8px;
border: 1px solid #333;
background: #111;
color: #fff;
padding: 8px 10px;
font-size: 14px;
}
.zc-profile-submit {
margin-top: 16px;
}
.zc-btn-primary {
display: inline-block;
border: none;
border-radius: 999px;
padding: 10px 22px;
background: linear-gradient(135deg, #f5c400, #ff0000);
color: #000;
font-weight: 700;
font-size: 14px;
cursor: pointer;
}
.zc-profile-success {
background: #113b19;
border-left: 3px solid #43d067;
padding: 8px 10px;
border-radius: 8px;
margin-bottom: 12px;
font-size: 13px;
}
.zc-profile-error {
background: #3b1111;
border-left: 3px solid #ff4d4d;
padding: 8px 10px;
border-radius: 8px;
margin-bottom: 12px;
font-size: 13px;
} @media (max-width: 768px) {
.zc-account-header {
flex-direction: column;
align-items: flex-start;
}
.zc-account-inner {
padding: 22px 16px;
}
} .zc-dashboard-wrapper {
padding: 20px;
max-width: 900px;
margin: 0 auto;
} .zc-dash-header {
background: #111;
border: 1px solid #ffcc00;
padding: 20px;
border-radius: 12px;
margin-bottom: 30px;
display: flex;
}
.zc-dash-header-left {
display: flex;
align-items: center;
gap: 20px;
} .zc-dash-photo-img {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #ffcc00;
} .zc-dash-welcome h2 {
margin: 0;
color: #ffcc00;
}
.zc-dash-sub a {
color: #fff;
font-size: 14px;
opacity: .8;
margin-right: 10px;
}
.zc-dash-sub a:hover {
opacity: 1;
} .zc-dash-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 15px;
}
.zc-dash-card {
background: #181818;
color: #fff;
border: 1px solid #333;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 12px;
font-size: 18px;
transition: all .25s ease;
}
.zc-dash-card span {
margin-top: 8px;
font-size: 15px;
}
.zc-dash-card:hover {
border-color: #ffcc00;
transform: translateY(-4px);
background: #222;
cursor: pointer;
} .zc-mylistings-wrap {
margin: 40px auto;
max-width: 1100px;
}
.zc-mylistings-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
}
.zc-mylistings-item {
background: #111;
border: 1px solid #222;
padding: 15px;
border-radius: 10px;
text-align: center;
transition: 0.3s ease;
}
.zc-mylistings-item:hover {
transform: translateY(-3px);
border-color: #ffcc00;
}
.zc-mylistings-thumb {
width: 100%;
height: 160px;
object-fit: cover;
border-radius: 8px;
}
.zc-mylistings-buttons {
margin-top: 12px;
display: flex;
justify-content: center;
gap: 10px;
}
.zc-btn.small {
padding: 6px 10px;
font-size: 14px;
}
.zc-btn.small.danger {
background-color: #b30000;
}
.zc-header-auth {
display: flex;
align-items: center;
gap: 12px;
font-size: 14px;
}
.zc-header-user {
color: #fdd300; font-weight: 600;
}
.zc-header-link {
color: #ffffff;
text-decoration: none;
padding: 4px 8px;
border-radius: 999px;
border: 1px solid transparent;
}
.zc-header-link:hover {
color: #fdd300;
border-color: #fdd300;
} .zcsp-cart-bar-area {
max-width: 1250px;
width: 100%;
margin: 15px auto;
padding: 10px 18px;
background: #ffffff;
border: 2px solid #FFD200; border-radius: 8px;
display: flex;
align-items: center;
gap: 12px;
box-shadow: 0 4px 12px rgba(255,210,0,0.25);
} .zcsp-cart-bar-area .zcsp-cart-icon {
font-size: 20px;
color: #000;
margin-right: 6px;
} .zcsp-cart-bar-area span {
font-size: 15px;
color: #000;
font-weight: 600;
} .zcsp-cart-count {
background: #E60000; color: #fff;
padding: 2px 8px;
border-radius: 18px;
font-weight: 700;
font-size: 12px;
margin-left: 6px;
display: inline-block;
}
.zcsp-cart-icon {
width: 22px;
height: 22px;
flex-shrink: 0;
display: inline-block;
margin-right: 8px;
}.notice { background:#092; color:#fff; padding:.6rem .8rem; border-radius:6px; }
#live-search-results { background:#111; border:1px solid #222; margin-top:.3rem; border-radius:6px; }
#live-search-results a { display:block; padding:.4rem .6rem; color:#ddd; text-decoration:none; }
#live-search-results a:hover { background:#181818; color:#fff; } .single-post .post-thumbnail img,
.single-zc_news .post-thumbnail img,
.single-zc_article .post-thumbnail img,
.single-zc_review .post-thumbnail img {
max-width: 800px;
margin: 0 auto 20px;
display: block;
border-radius: 10px;
}:root {
--zc-black:#000;
--zc-white:#fff;
--zc-yellow:#ffd000;
--zc-accent: var(--zc-yellow);
--zc-bg:#0b0b0b;
--zc-text:#f5f5f5;
}
html, body {
margin: 0;
padding: 0;
background: var(--zc-bg);
color: var(--zc-text);
font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6, .site-title {
font-family: 'Oswald', sans-serif;
letter-spacing: .3px;
}
.container { width: min(1200px, 94%); margin: 0 auto; }
.grid { display: grid; gap: 1rem; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media(max-width:992px){ .grid.cols-4,.grid.cols-3{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){ .grid.cols-4,.grid.cols-3,.grid.cols-2{ grid-template-columns:1fr; } } .zc-header {
position: sticky; top: 0; z-index: 1000;
background: #111; border-bottom: 2px solid var(--zc-accent);
}
.zc-header-inner {
display: grid;
grid-template-columns: 160px 1fr 200px;
align-items: center;
padding: .5rem 0;
}
.zc-left { display:flex; align-items:center; gap:.5rem; }
.hamburger { width:28px; height:22px; cursor:pointer; display:inline-flex; flex-direction:column; justify-content:space-between; }
.hamburger span { display:block; height:3px; background:var(--zc-accent); }
.zc-logo a { color:var(--zc-accent); font-weight:800; text-decoration:none; }
.zc-center { text-align:center; }
.site-title { margin:.1rem 0 0; font-size:1.2rem; color:var(--zc-white); }
.site-slogan { margin:0; font-size:.85rem; color:#cfcfcf; }
.zc-right { display:flex; justify-content:flex-end; gap:.7rem; align-items:center; }
.zc-right a { color:var(--zc-accent); text-decoration:none; }
.zc-right a .fa-brands { font-size:1.05rem; } #zc-drawer {
position: fixed;
top: 0;
left: 0;
width: 260px;
max-width: 85vw;
height: 100%;
background: #0f0f0f;
border-right: 2px solid var(--zc-accent);
transform: translateX(-100%);
transition: transform 0.25s ease-in-out;
z-index: 2000;
padding: 1rem 1.5rem 2rem 1rem;
overflow-y: auto;
box-shadow: 4px 0 12px rgba(0,0,0,0.6);
}
#zc-drawer.open { transform: translateX(0); }
#zc-drawer #drawer-close {
background: none;
border: none;
color: var(--zc-accent);
font-size: 1.6rem;
position: absolute;
top: 10px;
right: 12px;
cursor: pointer;
}
#zc-drawer a {
display: block;
color: #fff;
text-decoration: none;
padding: 0.6rem 0;
font-size: 1rem;
border-bottom: 1px solid #1a1a1a;
}
#zc-drawer a:hover { color: var(--zc-accent); }
@media (min-width: 1200px) {
#zc-drawer { width: 240px; }
} .card {
background: #121212;
border: 1px solid #1f1f1f;
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
}
.card .media img { width: 100%; height: auto; display: block; }
.card .body { padding: .95rem; }
.card .title a { color: #fff; text-decoration: none; }
.card .meta { color: #aaa; font-size: .85rem; }
.card:hover {
transform: translateY(-4px);
box-shadow: 0 4px 14px rgba(255,204,0,0.3);
} .zc-home-tabs .tabs {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 1.5rem;
border-bottom: 2px solid #333;
}
.zc-home-tabs .tabs button {
background: #111;
color: #ccc;
border: none;
padding: 10px 18px;
margin: 4px;
font-family: 'Oswald', sans-serif;
font-size: 16px;
letter-spacing: 0.5px;
border-radius: 6px 6px 0 0;
cursor: pointer;
transition: all 0.3s ease;
}
.zc-home-tabs .tabs button:hover {
color: #ffcc00;
background: #222;
transform: translateY(-2px);
}
.zc-home-tabs .tabs button.active {
color: #000;
background: #ffcc00;
box-shadow: 0 0 12px rgba(255, 204, 0, 0.8);
border-bottom: 2px solid #ffcc00;
transform: translateY(-2px);
}
@media (max-width: 768px) {
.zc-home-tabs .tabs {
overflow-x: auto;
white-space: nowrap;
justify-content: flex-start;
}
.zc-home-tabs .tabs button {
flex: 0 0 auto;
}
} .zc-footer {
background: #0f0f0f;
border-top: 2px solid var(--zc-accent);
padding: 1.8rem 0 1.4rem;
color: #ddd;
}
.zc-footer .top {
display: grid;
grid-template-columns: 1fr 1.2fr 1fr;
align-items: flex-start;
gap: 1rem;
border-bottom: 1px solid #222;
padding-bottom: 1rem;
}
.zc-footer .left { display:flex; flex-direction:column; gap:.8rem; }
.zc-footer .live-search input {
width:100%; padding:.6rem .8rem;
border-radius:6px; border:1px solid #333;
background:#141414; color:#fff;
}
.zc-footer .newsletter form { display:flex; gap:.5rem; }
.zc-footer .newsletter input[type=email] {
flex:1; padding:.6rem .8rem;
border:1px solid #333; border-radius:4px;
background:#141414; color:#eee;
}
.zc-footer .newsletter button {
background:var(--zc-accent); border:0;
border-radius:4px; color:#000; font-weight:700;
cursor:pointer; padding:.6rem 1rem;
}
.zc-footer .center { text-align:center; }
.zc-footer .footer-menu {
display:flex; flex-wrap:wrap; justify-content:center;
gap:.7rem 1.2rem; list-style:none; padding:0; margin:0;
}
.zc-footer .footer-menu li a {
color:#ddd; text-decoration:none; font-size:.95rem;
}
.zc-footer .footer-menu li a:hover { color:var(--zc-accent); }
.zc-footer .right { text-align:right; }
.zc-footer .right a {
margin-left:.6rem; color:var(--zc-accent);
text-decoration:none; font-weight:600;
}
.zc-footer .right a .fa-brands { font-size:1.1rem; }
.zc-footer .bottom { text-align:center; margin-top:1rem; }
.zc-footer .copyright { color:#888; font-size:.85rem; margin:0; }
@media(max-width:900px){
.zc-footer .top { grid-template-columns:1fr; text-align:center; }
.zc-footer .right { text-align:center; margin-top:1rem; }
} #scroll-btn {
position: fixed;
right: 14px; bottom: 14px;
width: 44px; height: 44px;
border-radius: 50%;
background: var(--zc-accent);
color: #000; border: 0;
cursor: pointer; font-weight: 800;
z-index: 9999; display:flex; align-items:center; justify-content:center;
} .responsive-embed { position:relative; padding-bottom:56.25%; height:0; overflow:hidden; }
.responsive-embed iframe { position:absolute; top:0; left:0; width:100%; height:100%; } img.nodownload { -webkit-user-drag:none; user-drag:none; pointer-events:none; }
a, button { transition: all .2s ease; }
a:hover { color: var(--zc-accent); } #live-search-results {
background:#111;
border:1px solid #222;
margin-top:.3rem;
border-radius:6px;
}
#live-search-results a {
display:block;
padding:.4rem .6rem;
color:#ddd;
text-decoration:none;
}
#live-search-results a:hover {
background:#181818;
color:#fff;
}
.notice {
background:#092;
color:#fff;
padding:.6rem .8rem;
border-radius:6px;
} .contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="password"],
.contact-form input[type="search"],
.contact-form textarea {
transition: all 0.3s ease;
outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
border-color: #ffcc00 !important;
box-shadow: 0 0 10px #ffcc00;
} body, p, li, span {
color: #e0e0e0;
}
h1, h2, h3, h4, h5, h6 {
color: #ffcc00;
}
.card, .body, .grid, .container {
background-color: #0a0a0a;
}
a {
color: #ffcc00;
}
a:hover {
color: #ffe066;
} .zc-title-limit {
display: -webkit-box;
-webkit-line-clamp: 3; -webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
line-height: 1.3;
max-height: 4.2em; word-break: break-word;
} .zc-card .zc-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
aspect-ratio: 16 / 9;
display: block;
border-radius: 0;
} .zc-card h3 {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
min-height: 3.8em; line-height: 1.3em;
font-size: 18px;
font-weight: 600;
color: #FFD700;
font-family: 'Oswald', sans-serif;
}
.post-views {
color: #ccc;
font-size: 15px;
margin-top: 8px;
display: flex;
align-items: center;
gap: 6px;
font-weight: 500;
}
.post-views i {
color: #f00; font-size: 16px;
} .video-facade { position: relative; display: block; cursor: pointer; }
.video-facade img { display: block; width: 100%; height: auto; }
.video-facade .fa-play-circle,
.video-facade .fas.fa-play-circle,
.video-facade .play-icon {
position: absolute; 
top: 50%; 
left: 50%;
transform: translate(-50%, -50%);
font-size: 60px; 
color: rgba(255,255,255,.9);
pointer-events: none; }
.zc-live-search-container {
text-align: center;
margin: 30px auto;
max-width: 600px;
position: relative;
}
#zc-search-input {
width: 70%;
padding: 10px;
border: 2px solid #ff0000;
border-radius: 8px;
outline: none;
}
#zc-search-btn {
background-color: #000;
color: #fff;
padding: 10px 20px;
border-radius: 8px;
margin-left: 5px;
cursor: pointer;
transition: 0.3s;
}
#zc-search-btn:hover {
background-color: #ff0000;
}
#zc-search-results {
background: #fff;
text-align: left;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
margin-top: 10px;
padding: 10px;
position: absolute;
width: 100%;
z-index: 999;
}
#zc-search-results ul { list-style: none; padding: 0; margin: 0; }
#zc-search-results li { border-bottom: 1px solid #ddd; padding: 6px 0; }
#zc-search-results a { color: #000; text-decoration: none; }
#zc-search-results a:hover { color: #ff0000; } .zc-mini-logo-img {
width: 150px;
height: auto;
display: block;
object-fit: contain;
}
.zc-mini-logo a {
display: flex;
align-items: center;
justify-content: center;
}
.zc-header .zc-right.zc-mini-logo {
display: flex;
align-items: center;
} .page-id-974 .zc-ai-compare-box,
.page-id-974 #zc-ai-compare-result {
max-width: 95% !important;
width: 85% !important;
} .page-id-974 .container,
.page-id-974 .site-content,
.page-id-974 .entry-content {
max-width: 90% !important;
width: 90% !important;
padding-left: 20px;
padding-right: 20px;
} .zc-ai-compare-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-top: 30px;
width: 100%;
} .zc-ai-col {
background: #0d0d0d;
border: 1px solid #333;
padding: 20px;
border-radius: 8px;
} .zc-ai-summary {
margin-top: 30px;
padding: 20px;
background: #111;
border-left: 4px solid #f1c40f;
border-radius: 6px;
} .zc-ai-col h3 {
margin-bottom: 12px;
text-transform: uppercase;
color: #f1c40f;
} .page-id-974 #zc-ai-compare-result {
margin-bottom: 60px;
} .zc-account-bg {
background: radial-gradient(circle at top, #222 0, #000 45%, #111 100%);
padding: 40px 15px;
}
.zc-account-inner {
max-width: 1100px;
margin: 0 auto;
background: rgba(5,5,5,0.9);
border-radius: 18px;
padding: 30px 22px;
box-shadow: 0 20px 60px rgba(0,0,0,0.6);
color: #f7f7f7;
}
.zc-account-header {
display: flex;
justify-content: space-between;
gap: 20px;
align-items: center;
margin-bottom: 25px;
}
.zc-account-title {
font-size: 24px;
font-weight: 700;
margin: 0 0 6px;
color: #fff;
}
.zc-account-subtitle {
margin: 0;
font-size: 14px;
color: #ccc;
}
.zc-account-meta {
display: flex;
align-items: center;
gap: 10px;
}
.zc-account-badge {
background: #f5c400;
color: #000;
padding: 6px 12px;
border-radius: 999px;
font-size: 12px;
font-weight: 600;
}
.zc-account-logout {
color: #ff4d4d;
text-decoration: none;
font-size: 13px;
}
.zc-account-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 18px;
}
.zc-account-card {
display: block;
background: linear-gradient(135deg, #161616, #111);
border-radius: 14px;
padding: 18px 16px;
text-decoration: none;
color: #f7f7f7;
border: 1px solid rgba(255,255,255,0.06);
transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.zc-account-card:hover {
transform: translateY(-3px);
box-shadow: 0 12px 30px rgba(0,0,0,0.8);
border-color: #f5c400;
}
.zc-account-card h2 {
font-size: 16px;
margin: 8px 0 4px;
}
.zc-account-card p {
font-size: 13px;
margin: 0;
color: #c8c8c8;
}
.zc-card-icon {
font-size: 26px;
} .zc-account-auth-box {
text-align: center;
}
.zc-account-auth-box .zc-account-title {
margin-bottom: 8px;
}
.zc-account-auth-box .zc-account-subtitle {
margin-bottom: 20px;
} .zc-profile-wrapper {
max-width: 600px;
margin: 0 auto;
color: #f7f7f7;
}
.zc-profile-wrapper h1 {
font-size: 22px;
margin-bottom: 15px;
}
.zc-profile-field {
margin-bottom: 12px;
}
.zc-profile-field label {
display: block;
font-size: 13px;
margin-bottom: 4px;
color: #ddd;
}
.zc-profile-field input {
width: 100%;
border-radius: 8px;
border: 1px solid #333;
background: #111;
color: #fff;
padding: 8px 10px;
font-size: 14px;
}
.zc-profile-submit {
margin-top: 16px;
}
.zc-btn-primary {
display: inline-block;
border: none;
border-radius: 999px;
padding: 10px 22px;
background: linear-gradient(135deg, #f5c400, #ff0000);
color: #000;
font-weight: 700;
font-size: 14px;
cursor: pointer;
}
.zc-profile-success {
background: #113b19;
border-left: 3px solid #43d067;
padding: 8px 10px;
border-radius: 8px;
margin-bottom: 12px;
font-size: 13px;
}
.zc-profile-error {
background: #3b1111;
border-left: 3px solid #ff4d4d;
padding: 8px 10px;
border-radius: 8px;
margin-bottom: 12px;
font-size: 13px;
} @media (max-width: 768px) {
.zc-account-header {
flex-direction: column;
align-items: flex-start;
}
.zc-account-inner {
padding: 22px 16px;
}
} .zc-dashboard-wrapper {
padding: 20px;
max-width: 900px;
margin: 0 auto;
} .zc-dash-header {
background: #111;
border: 1px solid #ffcc00;
padding: 20px;
border-radius: 12px;
margin-bottom: 30px;
display: flex;
}
.zc-dash-header-left {
display: flex;
align-items: center;
gap: 20px;
} .zc-dash-photo-img {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #ffcc00;
} .zc-dash-welcome h2 {
margin: 0;
color: #ffcc00;
}
.zc-dash-sub a {
color: #fff;
font-size: 14px;
opacity: .8;
margin-right: 10px;
}
.zc-dash-sub a:hover {
opacity: 1;
} .zc-dash-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 15px;
}
.zc-dash-card {
background: #181818;
color: #fff;
border: 1px solid #333;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 12px;
font-size: 18px;
transition: all .25s ease;
}
.zc-dash-card span {
margin-top: 8px;
font-size: 15px;
}
.zc-dash-card:hover {
border-color: #ffcc00;
transform: translateY(-4px);
background: #222;
cursor: pointer;
} .zc-mylistings-wrap {
margin: 40px auto;
max-width: 1100px;
}
.zc-mylistings-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
}
.zc-mylistings-item {
background: #111;
border: 1px solid #222;
padding: 15px;
border-radius: 10px;
text-align: center;
transition: 0.3s ease;
}
.zc-mylistings-item:hover {
transform: translateY(-3px);
border-color: #ffcc00;
}
.zc-mylistings-thumb {
width: 100%;
height: 160px;
object-fit: cover;
border-radius: 8px;
}
.zc-mylistings-buttons {
margin-top: 12px;
display: flex;
justify-content: center;
gap: 10px;
}
.zc-btn.small {
padding: 6px 10px;
font-size: 14px;
}
.zc-btn.small.danger {
background-color: #b30000;
}
.zc-header-auth {
display: flex;
align-items: center;
gap: 12px;
font-size: 14px;
}
.zc-header-user {
color: #fdd300; font-weight: 600;
}
.zc-header-link {
color: #ffffff;
text-decoration: none;
padding: 4px 8px;
border-radius: 999px;
border: 1px solid transparent;
}
.zc-header-link:hover {
color: #fdd300;
border-color: #fdd300;
} .zcsp-cart-bar-area {
max-width: 1250px;
width: 100%;
margin: 15px auto;
padding: 10px 18px;
background: #ffffff;
border: 2px solid #FFD200; border-radius: 8px;
display: flex;
align-items: center;
gap: 12px;
box-shadow: 0 4px 12px rgba(255,210,0,0.25);
} .zcsp-cart-bar-area .zcsp-cart-icon {
font-size: 20px;
color: #000;
margin-right: 6px;
} .zcsp-cart-bar-area span {
font-size: 15px;
color: #000;
font-weight: 600;
} .zcsp-cart-count {
background: #E60000; color: #fff;
padding: 2px 8px;
border-radius: 18px;
font-weight: 700;
font-size: 12px;
margin-left: 6px;
display: inline-block;
}
.zcsp-cart-icon {
width: 22px;
height: 22px;
flex-shrink: 0;
display: inline-block;
margin-right: 8px;
}:root {
--zc-black:#000;
--zc-white:#fff;
--zc-yellow:#ffd000;
--zc-accent: var(--zc-yellow);
--zc-bg:#0b0b0b;
--zc-text:#f5f5f5;
}
html, body {
margin: 0;
padding: 0;
background: var(--zc-bg);
color: var(--zc-text);
font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6, .site-title {
font-family: 'Oswald', sans-serif;
letter-spacing: .3px;
}
.container { width: min(1200px, 94%); margin: 0 auto; }
.grid { display: grid; gap: 1rem; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media(max-width:992px){ .grid.cols-4,.grid.cols-3{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){ .grid.cols-4,.grid.cols-3,.grid.cols-2{ grid-template-columns:1fr; } } .zc-header {
position: sticky; top: 0; z-index: 1000;
background: #111; border-bottom: 2px solid var(--zc-accent);
}
.zc-header-inner {
display: grid;
grid-template-columns: 160px 1fr 200px;
align-items: center;
padding: .5rem 0;
}
.zc-left { display:flex; align-items:center; gap:.5rem; }
.hamburger { width:28px; height:22px; cursor:pointer; display:inline-flex; flex-direction:column; justify-content:space-between; }
.hamburger span { display:block; height:3px; background:var(--zc-accent); }
.zc-logo a { color:var(--zc-accent); font-weight:800; text-decoration:none; }
.zc-center { text-align:center; }
.site-title { margin:.1rem 0 0; font-size:1.2rem; color:var(--zc-white); }
.site-slogan { margin:0; font-size:.85rem; color:#cfcfcf; }
.zc-right { display:flex; justify-content:flex-end; gap:.7rem; align-items:center; }
.zc-right a { color:var(--zc-accent); text-decoration:none; }
.zc-right a .fa-brands { font-size:1.05rem; } #zc-drawer {
position: fixed;
top: 0;
left: 0;
width: 260px;
max-width: 85vw;
height: 100%;
background: #0f0f0f;
border-right: 2px solid var(--zc-accent);
transform: translateX(-100%);
transition: transform 0.25s ease-in-out;
z-index: 2000;
padding: 1rem 1.5rem 2rem 1rem;
overflow-y: auto;
box-shadow: 4px 0 12px rgba(0,0,0,0.6);
}
#zc-drawer.open { transform: translateX(0); }
#zc-drawer #drawer-close {
background: none;
border: none;
color: var(--zc-accent);
font-size: 1.6rem;
position: absolute;
top: 10px;
right: 12px;
cursor: pointer;
}
#zc-drawer a {
display: block;
color: #fff;
text-decoration: none;
padding: 0.6rem 0;
font-size: 1rem;
border-bottom: 1px solid #1a1a1a;
}
#zc-drawer a:hover { color: var(--zc-accent); }
@media (min-width: 1200px) {
#zc-drawer { width: 240px; }
} .card {
background: #121212;
border: 1px solid #1f1f1f;
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
}
.card .media img { width: 100%; height: auto; display: block; }
.card .body { padding: .95rem; }
.card .title a { color: #fff; text-decoration: none; }
.card .meta { color: #aaa; font-size: .85rem; }
.card:hover {
transform: translateY(-4px);
box-shadow: 0 4px 14px rgba(255,204,0,0.3);
} .zc-home-tabs .tabs {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 1.5rem;
border-bottom: 2px solid #333;
}
.zc-home-tabs .tabs button {
background: #111;
color: #ccc;
border: none;
padding: 10px 18px;
margin: 4px;
font-family: 'Oswald', sans-serif;
font-size: 16px;
letter-spacing: 0.5px;
border-radius: 6px 6px 0 0;
cursor: pointer;
transition: all 0.3s ease;
}
.zc-home-tabs .tabs button:hover {
color: #ffcc00;
background: #222;
transform: translateY(-2px);
}
.zc-home-tabs .tabs button.active {
color: #000;
background: #ffcc00;
box-shadow: 0 0 12px rgba(255, 204, 0, 0.8);
border-bottom: 2px solid #ffcc00;
transform: translateY(-2px);
}
@media (max-width: 768px) {
.zc-home-tabs .tabs {
overflow-x: auto;
white-space: nowrap;
justify-content: flex-start;
}
.zc-home-tabs .tabs button {
flex: 0 0 auto;
}
} .zc-footer {
background: #0f0f0f;
border-top: 2px solid var(--zc-accent);
padding: 1.8rem 0 1.4rem;
color: #ddd;
}
.zc-footer .top {
display: grid;
grid-template-columns: 1fr 1.2fr 1fr;
align-items: flex-start;
gap: 1rem;
border-bottom: 1px solid #222;
padding-bottom: 1rem;
}
.zc-footer .left { display:flex; flex-direction:column; gap:.8rem; }
.zc-footer .live-search input {
width:100%; padding:.6rem .8rem;
border-radius:6px; border:1px solid #333;
background:#141414; color:#fff;
}
.zc-footer .newsletter form { display:flex; gap:.5rem; }
.zc-footer .newsletter input[type=email] {
flex:1; padding:.6rem .8rem;
border:1px solid #333; border-radius:4px;
background:#141414; color:#eee;
}
.zc-footer .newsletter button {
background:var(--zc-accent); border:0;
border-radius:4px; color:#000; font-weight:700;
cursor:pointer; padding:.6rem 1rem;
}
.zc-footer .center { text-align:center; }
.zc-footer .footer-menu {
display:flex; flex-wrap:wrap; justify-content:center;
gap:.7rem 1.2rem; list-style:none; padding:0; margin:0;
}
.zc-footer .footer-menu li a {
color:#ddd; text-decoration:none; font-size:.95rem;
}
.zc-footer .footer-menu li a:hover { color:var(--zc-accent); }
.zc-footer .right { text-align:right; }
.zc-footer .right a {
margin-left:.6rem; color:var(--zc-accent);
text-decoration:none; font-weight:600;
}
.zc-footer .right a .fa-brands { font-size:1.1rem; }
.zc-footer .bottom { text-align:center; margin-top:1rem; }
.zc-footer .copyright { color:#888; font-size:.85rem; margin:0; }
@media(max-width:900px){
.zc-footer .top { grid-template-columns:1fr; text-align:center; }
.zc-footer .right { text-align:center; margin-top:1rem; }
} #scroll-btn {
position: fixed;
right: 14px; bottom: 14px;
width: 44px; height: 44px;
border-radius: 50%;
background: var(--zc-accent);
color: #000; border: 0;
cursor: pointer; font-weight: 800;
z-index: 9999; display:flex; align-items:center; justify-content:center;
} .responsive-embed { position:relative; padding-bottom:56.25%; height:0; overflow:hidden; }
.responsive-embed iframe { position:absolute; top:0; left:0; width:100%; height:100%; } img.nodownload { -webkit-user-drag:none; user-drag:none; pointer-events:none; }
a, button { transition: all .2s ease; }
a:hover { color: var(--zc-accent); } #live-search-results {
background:#111;
border:1px solid #222;
margin-top:.3rem;
border-radius:6px;
}
#live-search-results a {
display:block;
padding:.4rem .6rem;
color:#ddd;
text-decoration:none;
}
#live-search-results a:hover {
background:#181818;
color:#fff;
}
.notice {
background:#092;
color:#fff;
padding:.6rem .8rem;
border-radius:6px;
} .contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="password"],
.contact-form input[type="search"],
.contact-form textarea {
transition: all 0.3s ease;
outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
border-color: #ffcc00 !important;
box-shadow: 0 0 10px #ffcc00;
} body, p, li, span {
color: #e0e0e0;
}
h1, h2, h3, h4, h5, h6 {
color: #ffcc00;
}
.card, .body, .grid, .container {
background-color: #0a0a0a;
}
a {
color: #ffcc00;
}
a:hover {
color: #ffe066;
} .zc-title-limit {
display: -webkit-box;
-webkit-line-clamp: 3; -webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
line-height: 1.3;
max-height: 4.2em; word-break: break-word;
} .zc-card .zc-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
aspect-ratio: 16 / 9;
display: block;
border-radius: 0;
} .zc-card h3 {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
min-height: 3.8em; line-height: 1.3em;
font-size: 18px;
font-weight: 600;
color: #FFD700;
font-family: 'Oswald', sans-serif;
}
.post-views {
color: #ccc;
font-size: 15px;
margin-top: 8px;
display: flex;
align-items: center;
gap: 6px;
font-weight: 500;
}
.post-views i {
color: #f00; font-size: 16px;
} .video-facade { position: relative; display: block; cursor: pointer; }
.video-facade img { display: block; width: 100%; height: auto; }
.video-facade .fa-play-circle,
.video-facade .fas.fa-play-circle,
.video-facade .play-icon {
position: absolute; 
top: 50%; 
left: 50%;
transform: translate(-50%, -50%);
font-size: 60px; 
color: rgba(255,255,255,.9);
pointer-events: none; }
.zc-live-search-container {
text-align: center;
margin: 30px auto;
max-width: 600px;
position: relative;
}
#zc-search-input {
width: 70%;
padding: 10px;
border: 2px solid #ff0000;
border-radius: 8px;
outline: none;
}
#zc-search-btn {
background-color: #000;
color: #fff;
padding: 10px 20px;
border-radius: 8px;
margin-left: 5px;
cursor: pointer;
transition: 0.3s;
}
#zc-search-btn:hover {
background-color: #ff0000;
}
#zc-search-results {
background: #fff;
text-align: left;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
margin-top: 10px;
padding: 10px;
position: absolute;
width: 100%;
z-index: 999;
}
#zc-search-results ul { list-style: none; padding: 0; margin: 0; }
#zc-search-results li { border-bottom: 1px solid #ddd; padding: 6px 0; }
#zc-search-results a { color: #000; text-decoration: none; }
#zc-search-results a:hover { color: #ff0000; } .zc-mini-logo-img {
width: 150px;
height: auto;
display: block;
object-fit: contain;
}
.zc-mini-logo a {
display: flex;
align-items: center;
justify-content: center;
}
.zc-header .zc-right.zc-mini-logo {
display: flex;
align-items: center;
} .page-id-974 .zc-ai-compare-box,
.page-id-974 #zc-ai-compare-result {
max-width: 95% !important;
width: 85% !important;
} .page-id-974 .container,
.page-id-974 .site-content,
.page-id-974 .entry-content {
max-width: 90% !important;
width: 90% !important;
padding-left: 20px;
padding-right: 20px;
} .zc-ai-compare-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-top: 30px;
width: 100%;
} .zc-ai-col {
background: #0d0d0d;
border: 1px solid #333;
padding: 20px;
border-radius: 8px;
} .zc-ai-summary {
margin-top: 30px;
padding: 20px;
background: #111;
border-left: 4px solid #f1c40f;
border-radius: 6px;
} .zc-ai-col h3 {
margin-bottom: 12px;
text-transform: uppercase;
color: #f1c40f;
} .page-id-974 #zc-ai-compare-result {
margin-bottom: 60px;
} .zc-account-bg {
background: radial-gradient(circle at top, #222 0, #000 45%, #111 100%);
padding: 40px 15px;
}
.zc-account-inner {
max-width: 1100px;
margin: 0 auto;
background: rgba(5,5,5,0.9);
border-radius: 18px;
padding: 30px 22px;
box-shadow: 0 20px 60px rgba(0,0,0,0.6);
color: #f7f7f7;
}
.zc-account-header {
display: flex;
justify-content: space-between;
gap: 20px;
align-items: center;
margin-bottom: 25px;
}
.zc-account-title {
font-size: 24px;
font-weight: 700;
margin: 0 0 6px;
color: #fff;
}
.zc-account-subtitle {
margin: 0;
font-size: 14px;
color: #ccc;
}
.zc-account-meta {
display: flex;
align-items: center;
gap: 10px;
}
.zc-account-badge {
background: #f5c400;
color: #000;
padding: 6px 12px;
border-radius: 999px;
font-size: 12px;
font-weight: 600;
}
.zc-account-logout {
color: #ff4d4d;
text-decoration: none;
font-size: 13px;
}
.zc-account-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 18px;
}
.zc-account-card {
display: block;
background: linear-gradient(135deg, #161616, #111);
border-radius: 14px;
padding: 18px 16px;
text-decoration: none;
color: #f7f7f7;
border: 1px solid rgba(255,255,255,0.06);
transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.zc-account-card:hover {
transform: translateY(-3px);
box-shadow: 0 12px 30px rgba(0,0,0,0.8);
border-color: #f5c400;
}
.zc-account-card h2 {
font-size: 16px;
margin: 8px 0 4px;
}
.zc-account-card p {
font-size: 13px;
margin: 0;
color: #c8c8c8;
}
.zc-card-icon {
font-size: 26px;
} .zc-account-auth-box {
text-align: center;
}
.zc-account-auth-box .zc-account-title {
margin-bottom: 8px;
}
.zc-account-auth-box .zc-account-subtitle {
margin-bottom: 20px;
} .zc-profile-wrapper {
max-width: 600px;
margin: 0 auto;
color: #f7f7f7;
}
.zc-profile-wrapper h1 {
font-size: 22px;
margin-bottom: 15px;
}
.zc-profile-field {
margin-bottom: 12px;
}
.zc-profile-field label {
display: block;
font-size: 13px;
margin-bottom: 4px;
color: #ddd;
}
.zc-profile-field input {
width: 100%;
border-radius: 8px;
border: 1px solid #333;
background: #111;
color: #fff;
padding: 8px 10px;
font-size: 14px;
}
.zc-profile-submit {
margin-top: 16px;
}
.zc-btn-primary {
display: inline-block;
border: none;
border-radius: 999px;
padding: 10px 22px;
background: linear-gradient(135deg, #f5c400, #ff0000);
color: #000;
font-weight: 700;
font-size: 14px;
cursor: pointer;
}
.zc-profile-success {
background: #113b19;
border-left: 3px solid #43d067;
padding: 8px 10px;
border-radius: 8px;
margin-bottom: 12px;
font-size: 13px;
}
.zc-profile-error {
background: #3b1111;
border-left: 3px solid #ff4d4d;
padding: 8px 10px;
border-radius: 8px;
margin-bottom: 12px;
font-size: 13px;
} @media (max-width: 768px) {
.zc-account-header {
flex-direction: column;
align-items: flex-start;
}
.zc-account-inner {
padding: 22px 16px;
}
} .zc-dashboard-wrapper {
padding: 20px;
max-width: 900px;
margin: 0 auto;
} .zc-dash-header {
background: #111;
border: 1px solid #ffcc00;
padding: 20px;
border-radius: 12px;
margin-bottom: 30px;
display: flex;
}
.zc-dash-header-left {
display: flex;
align-items: center;
gap: 20px;
} .zc-dash-photo-img {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #ffcc00;
} .zc-dash-welcome h2 {
margin: 0;
color: #ffcc00;
}
.zc-dash-sub a {
color: #fff;
font-size: 14px;
opacity: .8;
margin-right: 10px;
}
.zc-dash-sub a:hover {
opacity: 1;
} .zc-dash-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 15px;
}
.zc-dash-card {
background: #181818;
color: #fff;
border: 1px solid #333;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 12px;
font-size: 18px;
transition: all .25s ease;
}
.zc-dash-card span {
margin-top: 8px;
font-size: 15px;
}
.zc-dash-card:hover {
border-color: #ffcc00;
transform: translateY(-4px);
background: #222;
cursor: pointer;
} .zc-mylistings-wrap {
margin: 40px auto;
max-width: 1100px;
}
.zc-mylistings-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
}
.zc-mylistings-item {
background: #111;
border: 1px solid #222;
padding: 15px;
border-radius: 10px;
text-align: center;
transition: 0.3s ease;
}
.zc-mylistings-item:hover {
transform: translateY(-3px);
border-color: #ffcc00;
}
.zc-mylistings-thumb {
width: 100%;
height: 160px;
object-fit: cover;
border-radius: 8px;
}
.zc-mylistings-buttons {
margin-top: 12px;
display: flex;
justify-content: center;
gap: 10px;
}
.zc-btn.small {
padding: 6px 10px;
font-size: 14px;
}
.zc-btn.small.danger {
background-color: #b30000;
}
.zc-header-auth {
display: flex;
align-items: center;
gap: 12px;
font-size: 14px;
}
.zc-header-user {
color: #fdd300; font-weight: 600;
}
.zc-header-link {
color: #ffffff;
text-decoration: none;
padding: 4px 8px;
border-radius: 999px;
border: 1px solid transparent;
}
.zc-header-link:hover {
color: #fdd300;
border-color: #fdd300;
} .zcsp-cart-bar-area {
max-width: 1250px;
width: 100%;
margin: 15px auto;
padding: 10px 18px;
background: #ffffff;
border: 2px solid #FFD200; border-radius: 8px;
display: flex;
align-items: center;
gap: 12px;
box-shadow: 0 4px 12px rgba(255,210,0,0.25);
} .zcsp-cart-bar-area .zcsp-cart-icon {
font-size: 20px;
color: #000;
margin-right: 6px;
} .zcsp-cart-bar-area span {
font-size: 15px;
color: #000;
font-weight: 600;
} .zcsp-cart-count {
background: #E60000; color: #fff;
padding: 2px 8px;
border-radius: 18px;
font-weight: 700;
font-size: 12px;
margin-left: 6px;
display: inline-block;
}
.zcsp-cart-icon {
width: 22px;
height: 22px;
flex-shrink: 0;
display: inline-block;
margin-right: 8px;
}