.gw-net-domain-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
}

@media (max-width: 768px) {
    .gw-net-domain-offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 540px) {
    .gw-net-domain-offer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.gw-net-domain-card {
    background: #fff;
    border: 1px solid #cdcdcd;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: transform .25s ease, box-shadow .25s ease;
}

.gw-net-domain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

@media (max-width: 540px) {
    .gw-net-domain-card { padding: 18px; }
}

.gw-net-title-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
}

@media (max-width: 540px) {
    .gw-net-title-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

.gw-net-title-row,
.gw-net-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gw-net-tld {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 540px) {
    .gw-net-tld { font-size: 26px; }
}

.gw-net-offer-tag {
    background: #e5e5e5;
    color: #414142;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1px;
}

.gw-net-new-price {
    font-size: 22px;
    font-weight: 700;
}

.gw-net-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
}

@media (max-width: 540px) {
    .gw-net-new-price { font-size: 20px; }
    .gw-net-old-price { font-size: 14px; }
}

.gw-net-dcv-input-wrapper {
    position: relative;
    margin-top: 10px;
}

.gw-net-domain-input {
    width: 100%;
    padding: 10px 50px 10px 15px !important;
    border: 1px solid #cdcdcd !important;
    border-radius: 5px;
    outline: none !important;
    font-size: 16px;
    box-sizing: border-box;
}

.gw-net-dcv-input-tld {
    position: absolute;
    right: 16px;
    top: 43%;
    transform: translateY(-50%);
    font-weight: 600;
}

@media (max-width: 540px) {
    .gw-net-domain-input {
        font-size: 15px;
        padding: 10px 45px 10px 14px !important;
    }
    .gw-net-dcv-input-tld {
        right: 12px;
        font-size: 15px;
    }
}

.gw-net-button-row { margin-top: 20px; }

.gw-net-btn-register {
    background: #FFD400;
    color: #414142;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    display: block;
    transition: background .2s ease, color .2s ease;
    width: 100%;
    box-sizing: border-box;
}

.gw-net-btn-register:hover {
    background: #FFDD33;
	color: #414142;
}

@media(max-width:540px) {
    .gw-net-btn-register {
        padding: 12px 0;
        font-size: 15px;
    }
}
