.tktx-grid {
    display: grid;
    width: 100%;
}

.tktx-card {
    background: #fff;
    border: 1px solid #ECECEC;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tktx-card:hover {
    border-color: #E31837;
    box-shadow: 0 0 15px rgba(227, 24, 55, 0.2);
}

.tktx-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tktx-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tktx-badge-top {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #E31837;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
}

.tktx-banner-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.tktx-banner-left {
    background: #D4AF37;
    color: #000;
    padding: 6px 10px;
    flex: 1;
    text-align: center;
}

.tktx-banner-right {
    background: #000;
    color: #fff;
    padding: 6px 10px;
    flex: 1;
    text-align: center;
}

.tktx-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tktx-title {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
}

.tktx-title a {
    text-decoration: none;
}

.tktx-desc {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 15px;
    flex-grow: 1;
}

.tktx-price-row {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.tktx-price-sale {
    font-size: 20px;
    font-weight: 800;
}

.tktx-price-reg {
    font-size: 14px;
    text-decoration: line-through;
}

.tktx-variation-wrapper {
    margin-bottom: 15px;
}

.tktx-variation-wrapper label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 5px;
}

.tktx-variation-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background: #F8FAFC;
    font-size: 13px;
    outline: none;
    box-sizing: border-box;
}

.tktx-add-to-cart {
    width: 100%;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.tktx-add-to-cart.loading {
    opacity: 0.7;
    pointer-events: none;
}
