.tow-gts-wrap{
    margin:24px 0;
    padding:22px;
    border:1px solid #e5e7eb;
    border-radius:0;
    background:#fff;
    box-shadow:none;
}
.tow-gts-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom:18px;
}
.tow-gts-head h3{
    margin:0 0 6px;
    font-size:24px;
    font-weight:800;
    color:#0f172a;
}
.tow-gts-head p{
    margin:0;
    color:#64748b;
    font-size:14px;
}
.tow-gts-size-badge{
    background:#eef2ff;
    color:#1e3a8a;
    border:1px solid #c7d2fe;
    padding:9px 14px;
    border-radius:0;
    font-size:13px;
    font-weight:700;
}
.tow-gts-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
}
.tow-gts-field.tow-gts-full{
    grid-column:1 / -1;
}
.tow-gts-field label{
    display:block;
    margin-bottom:7px;
    font-size:14px;
    font-weight:700;
    color:#111827;
}
.tow-gts-field label span{
    color:#dc2626;
}
.tow-gts-field input[type="text"],
.tow-gts-field input[type="file"]{
    width:100%;
    box-sizing:border-box;
    border:1px solid #d1d5db;
    border-radius:0;
    padding:12px 14px;
    background:#fff;
    font-size:14px;
    outline:none;
}
.tow-gts-field input[type="text"]:focus,
.tow-gts-field input[type="file"]:focus{
    border-color:#2563eb;
    box-shadow:none;
}
.tow-gts-field small{
    display:block;
    margin-top:6px;
    color:#6b7280;
    font-size:12px;
}
.tow-gts-optional{
    margin-top:7px;
    font-size:13px;
    color:#4b5563;
}
.tow-gts-disabled{
    opacity:.45;
    background:#f3f4f6 !important;
}
.tow-gts-actions{
    margin-top:18px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:12px;
}
.tow-gts-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#1f4ed8;
    color:#fff;
    border:0;
    border-radius:0;
    padding:14px 24px;
    font-weight:800;
    font-size:15px;
    cursor:pointer;
    box-shadow:none;
}
.tow-gts-btn:hover{
    color:#fff;
    opacity:.95;
}
.tow-gts-help{
    color:#6b7280;
    font-size:13px;
}
.tow-gts-progress-wrap{
    margin-top:18px;
    background:#e5e7eb;
    border-radius:0;
    overflow:hidden;
    height:22px;
}
.tow-gts-progress-bar{
    width:0%;
    height:100%;
    background:linear-gradient(90deg,#2563eb,#22c55e);
    transition:width .3s ease;
}
.tow-gts-progress-text{
    margin-top:10px;
    font-size:14px;
    font-weight:700;
    color:#2563eb;
}
.tow-gts-designs{
    margin-top:22px;
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:18px;
}
.tow-gts-card{
    background:#fff;
    border-radius:0;
    padding:12px;
    border:1px solid #e5e7eb;
    box-shadow:none;
    cursor:pointer;
    text-align:center;
    transition:.2s ease;
}
.tow-gts-card:hover{
    transform:none;
    box-shadow:none;
    border-color:#2563eb;
}
.tow-gts-card.active{
    border:2px solid #2563eb;
    background:#eff6ff;
}
.tow-gts-card img{
    display:block;
    width:100%;
    border-radius:0;
    background:#f8fafc;
}
.tow-gts-select-btn{
    margin-top:12px;
    width:100%;
    border:0;
    border-radius:0;
    background:#f5f5f5;
    padding:12px;
    font-weight:800;
    color:#222;
    cursor:pointer;
}
.tow-gts-cart-preview{
    display:block;
    margin-top:8px;
    width:180px;
    max-width:100%;
    border:1px solid #ddd;
    border-radius:0;
}
@media (max-width: 991px){
    .tow-gts-designs{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 767px){
    .tow-gts-wrap{
        padding:15px;
        margin:18px 0;
    }
    .tow-gts-grid,
    .tow-gts-designs{
        grid-template-columns:1fr;
    }
    .tow-gts-head h3{
        font-size:20px;
    }
    .tow-gts-actions{
        display:block;
    }
    .tow-gts-btn{
        width:100%;
        margin-bottom:8px;
    }
}
