/* One Notion Item page*/
.notion-card {
    border: 1px solid #515151;
    padding: 20px;
    max-width: 900px;
    background: #fff;
    border-radius: 8px;
}
.notion-gallery img {
    width: 100%;
    height: 420px; /* Adjust as needed */
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 15px;
    display: block;
}
.entry-header {
    text-align: center;
    margin-bottom: 20px;
}
.entry-subtitle {
    font-size: 1.2rem;
    color: #777;
}
.notion-cart-btn {
    background: #222;
    color: #fff;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.notion-cart-btn:hover {
    background: #9e9e9e;
    color: #222;
}
.cart-msg {
    color: green;
    font-weight: bold;
}
.swiper-button-prev,
.swiper-button-next {
    width: 36px;
    height: 36px;
    color: #fff;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: none;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    color: #fff;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    color: #fff;
}

.notion-update-time {
    font-size: 0.50em;
    color: #999;
    margin-top: 10px;
    opacity: 0.7;
    font-weight: normal;
}

/* Dark theme styles */
body.dark-theme .notion-card {
    background: #222;
    border-color: #444;
    color: #eee;
}
body.dark-theme .entry-header,
body.dark-theme .entry-subtitle {
    color: #c6c4c4;
}
body.dark-theme .buy-btn {
    background: #c6c4c4;
    color: #222;
}
body.dark-theme .cart-msg {
    color: #c6c4c4;
}
body.dark-theme .swiper-button-prev,
body.dark-theme .swiper-button-next {
    color: #c6c4c4;
}
body.dark-theme .swiper-button-prev::after,
body.dark-theme .swiper-button-next::after {
    color: #c6c4c4;
}
body.dark-theme .notion-cart-btn {
    background: #c6c4c4;
    color: #222;
}
body.dark-theme .notion-cart-btn:hover {
    background: #9c9c9c;
    color: #222;
}
