a {
    color: inherit;
    text-decoration: none;
}

.shop-wrapper {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.shop-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.shop-thumb-wrap {
    width: 100%;
    height: 140px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.shop-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.glow-card:hover .shop-thumb-wrap img {
    transform: scale(1.05);
}

.shop-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Syne', sans-serif;
}

.shop-card-status {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 6px; height: 6px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 5px #2ecc71;
}

.coming-soon-btn {
    margin-top: auto;
    display: inline-block;
    padding: 8px 0;
    text-align: center;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.coming-soon-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.product-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.product-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.prod-gallery, .prod-info-right {
    min-width: 0;
}

.gallery-main {
    width: 100%;
    margin-bottom: 15px;
    position: relative;
    cursor: crosshair;
    border-radius: 6px;
    z-index: 10;
}

.gallery-main img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 800px !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.img-zoom-result {
    position: absolute;
    top: 50%;
    left: 102%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    background-repeat: no-repeat;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    z-index: 9999;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(33, 179, 178, 0.2);
}

.product-split {
    position: relative;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 5px;
}

.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }

.thumb-img {
    height: 50px;
    width: 70px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: none;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.thumb-img:hover, .thumb-img.active {
    opacity: 1;
    border-color: var(--text-primary);
}

.prod-info-right {
    display: flex;
    flex-direction: column;
}

.prod-title {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Syne', sans-serif;
}

.prod-badges {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px;
}

.prod-badge {
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.prod-badge.green {
    color: #2ecc71; border-color: rgba(46, 204, 113, 0.3);
}

.prod-price {
    font-size: 2rem;
    font-family: 'Share Tech Mono', monospace;
    margin-bottom: 20px;
}

.prod-btn {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

.feat-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feat-col-hdr {
    font-size: 1rem;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}

.feat-list {
    list-style: none;
    padding: 0; margin: 0;
}

.feat-list li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex; align-items: flex-start; gap: 8px;
    line-height: 1.4;
}

.feat-list li .dot {
    margin-top: 4px;
    min-width: 6px; height: 6px;
    background-color: #2ecc71;
    border-radius: 50%;
}

.buy-btn {
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    text-align: center;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #3ca7cb, #2b7a95);
    color: white;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(60, 167, 203, 0.3);
}

.buy-btn:hover {
    box-shadow: 0 4px 25px rgba(60, 167, 203, 0.5);
    transform: translateY(-2px);
}

.buy-btn.disabled-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    box-shadow: none;
    cursor: not-allowed;
    border: 1px solid var(--border-color);
    transform: none;
}

.github-btn {
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    text-align: center;
    border: none;
    cursor: none !important;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.github-btn:hover {
    box-shadow: 0 4px 25px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    background: #f0f0f0;
}

.github-bg-icon {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.15;
    width: 100px;
    height: 100px;
    color: #000 !important;
    fill: #000 !important;
    pointer-events: none;
    z-index: 1;
}

.github-btn span {
    position: relative;
    z-index: 2;
}

@media (max-width: 800px) {
    .shop-wrapper { padding: 15px; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .product-split { grid-template-columns: 1fr; }
    .feat-columns { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
    .shop-grid { grid-template-columns: 1fr; }
}