.gasw-search-widget { margin:0 auto; }
.gasw-search-form {
    margin-bottom: 30px;
    display: flex;
    background: #0a0a0a;
    border-radius: 1rem;
    background: linear-gradient(135deg, #23272F 0%, #14161a 100%);
    box-shadow: 10px 10px 20px #0e1013, -10px -10px 40px #383e4b;
    padding: 0.3rem;
    gap: 0.3rem;
    margin-top: 20px;
}
#gasw-search-input {
    flex: 1;
    font-size: 16px;
    min-height: 50px;
    border-radius: 0 0.8rem 0.8rem 0;
    background: #23272F;
    box-shadow: inset 5px 5px 10px #0e1013, inset -5px -5px 10px #383e4b, 0px 0px 100px rgba(255, 212, 59, 0), 0px 0px 100px rgba(255, 102, 0, 0);
    width: 100%;
    flex-basis: 75%;
    padding: 1.2rem;
    border: none;
    border: 1px solid transparent;
    color: white;
    transition: all 0.2s ease-in-out;
}
#gasw-search-input:focus{
    border: 1px solid #FFD43B;
  outline: none;
  box-shadow: inset 0px 0px 10px rgba(255, 102, 0, 0.5), inset 0px 0px 10px rgba(255, 212, 59, 0.5), 0px 0px 100px rgba(255, 212, 59, 0.5), 0px 0px 100px rgba(255, 102, 0, 0.5);
}
#gasw-search-btn {
    margin-left: 10px;
    font-size: 16px;
    cursor: pointer;
    flex-basis: 25%;
    padding: 1rem;
    background: linear-gradient(135deg, rgb(255, 212, 59) 0%, rgb(255, 102, 0) 100%);
    box-shadow: 0px 0px 1px rgba(255, 212, 59, 0.5), 0px 0px 1px rgba(255, 102, 0, 0.5);
    font-weight: 900;
    text-transform: uppercase;
    color: #23272F;
    border: none;
    width: 100%;
    border-radius: 1rem 0 0 1rem;
    transition: all 0.2s ease-in-out;
}
#gasw-search-btn:hover {
    background: linear-gradient(135deg, rgb(255, 212, 59) 50%, rgb(255, 102, 0) 100%);
  box-shadow: 0px 0px 100px rgba(255, 212, 59, 0.5), 0px 0px 100px rgba(255, 102, 0, 0.5);
}
.gasw-loading, .gasw-no-results { text-align:center; padding:20px; font-size:18px; }

.gasw-cards { display:flex; flex-wrap:wrap; gap:20px; }
.gasw-card { width:calc(25% - 20px); background:#444a4d; box-shadow:0 2px 6px rgba(0,0,0,0.1); border-radius:8px; overflow:hidden;transition: all 0.2s; }
.gasw-card-thumb {
    position: relative;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.gasw-card-thumb img { width:100%; height:auto; display:block; }
.gasw-status { position:absolute; top:10px; left:10px; background:red; color:#fff; padding:3px 8px; font-size:12px; border-radius:3px; }
.gasw-title { font-size:15px; margin:10px; }
.gasw-price { font-size: 15px;color:#f39c12; font-weight:bold; margin:0 10px; }
.gasw-date { font-size:12px; color:#ababab; margin:0 10px 10px; }

.gasw-pagination { text-align:center; margin-top:20px; }
.gasw-pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 6px 13px;
    border: 1px solid #719cb1;
    color: #ffffff;
    text-decoration: none;
    background: #607D8B;
    font-size: 15px;
    border-radius: 7px;
}
.gasw-pagination a.active {
    border: 1px solid #fbc678;
    color: #4d2f02;
    text-decoration: none;
    background: #FF9800;
    font-weight: 800;
}

.gasw-card:hover {
        background: #2c3337;
        box-shadow: 0 2px 13px -3px rgb(38 60 71);
    }
.gasw-card:hover .gasw-card-thumb {opacity: 0.8;}
    
@media (max-width: 767px) {
    .gasw-search-form {
        flex-direction: column;
    }
    #gasw-search-input {
    border-radius: 0.8rem;}
  .gasw-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.gasw-card {
    width: calc(50% - 20px);
    background: #444a4d;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}
}

@media (max-width: 530px) {
    .gasw-search-form {
        flex-direction: column;
    }
    #gasw-search-input {
    border-radius: 0.8rem;}
    #gasw-search-btn {border-radius: 1rem;}
.gasw-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: column;
}
.gasw-card {
    width: 100%;
    background: #444a4d;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}
}